using System;
namespace JiaZhiQuan.Common.Models.PO
{
///
/// 创作者中心-空间版本
/// n_creator_space_version
///
public class CreatorSpaceVersionPO
{
///
/// id
///
public int id { get; set; }
///
/// 版本名称
///
public string name { get; set; }
///
/// 是否启用
///
public EnableStatus enabled { get; set; }
///
/// 创建时间
///
public DateTime createAt { get; set; }
}
}