using System; using System.Collections.Generic; using System.Linq; using System.Web; namespace WebAPI.Models { public class OptionListModel { public string field { get; set; } public string title { get; set; } public bool sort { get; set; } public bool hide { get; set; } } }