namespace Atomx.Admin.Client.Models { public class SiteAppModel { /// /// 数据ID /// public long Id { get; set; } /// /// 网站应用类型 /// public int Type { get; set; } /// /// 网站应用名称 /// public string Name { get; set; } = string.Empty; /// /// 是否可用 /// public bool Enabled { get; set; } } }