I have added a list in my model like so:
    public static List<string> Fields
    {
        get
        {
           var results = new List<string>() { "Name", "Date", "Address", "..." };
            return results;
        }
    }
When I try to access my list in my method I get the following error: "Memeber 'Model.Fields' cannot be accessed with an instance reference; quailfy it with a type name instead"
 
    