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.
16 lines
511 B
16 lines
511 B
using Entity.Sugar;
|
|
|
|
namespace Entity.ViewModels
|
|
{
|
|
public class View_SYS_ProgramList : OTB_SYS_ProgramList
|
|
{
|
|
public string ModuleName { get; set; }
|
|
public int? ModOrderBy { get; set; }
|
|
public string AllModuleID { get; set; }
|
|
public string ProgramTypeName { get; set; }
|
|
public string EffectiveName { get; set; }
|
|
public string ShowInListName { get; set; }
|
|
public int? OrderByValue { get; set; }
|
|
public int OrderCount { get; set; }
|
|
}
|
|
}
|