using System; namespace JiaZhiQuan.Common.Models.PO { /// /// 创作者空间卡片 /// n_creator_space /// public class CreatorSpacePO { /// /// 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; } } }