using System; namespace JiaZhiQuan.Common.Models.VO.CreatorCenter { public class CreatorSpaceVO { /// /// id /// public int id { get; set; } /// /// 卡片名称 /// public string name { get; set; } /// /// 卡片类型 /// public CreatorSpace.CreatorSpaceType contentType { get; set; } /// /// 卡片内容Code /// public string contentCode { get; set; } /// /// 排序 /// public float displayOrder { get; set; } /// /// 版本id /// public int versionId { get; set; } /// /// 是否启用 /// public EnableStatus enabled { get; set; } /// /// 创建时间 /// public DateTime createAt { get; set; } /// /// 是否有tab(当卡片类型为活动专题时字段有值) /// public int hasChild { get; set; } } }