You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
Tiobon.Web.Core/Tiobon.Core.Model/ViewModels/Extend/CoursePublicSearchField.cs

22 lines
692 B

namespace Tiobon.Core.Model;
public class CoursePublicSearch
{
public List<DT_PageMutiMsg> DT_PageMutiMsg { get; set; }
public List<CoursePublicSearchField> SearchFields { get; set; } = new List<CoursePublicSearchField>();
}
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;
}