namespace Tiobon.Core.Model; public class CoursePublicSearch { public List DT_PageMutiMsg { get; set; } public List SearchFields { get; set; } = new List(); } public class CoursePublicSearchField { public string label { get; set; } public string field { get; set; } public string elementType { get; set; } public bool required { get; set; } public bool multipleSelect { get; set; } public bool editable { get; set; } public string dataSource { get; set; } public string placeholder { get; set; } public int displayType { get; set; } public int width { get; set; } = 150; }