using System;
using System.Collections.Generic;
namespace NCC.Education.Entitys.Dto.TbMbtCharacter
{
///
/// MBT人格修改输入参数
///
public class TbMbtCharacterCrInput
{
///
/// 名称
///
public string name { get; set; }
///
/// 规则
///
public string rule { get; set; }
///
/// 创建时间
///
public DateTime? creatorTime { get; set; }
///
/// 修改时间
///
public DateTime? lastModifyTime { get; set; }
}
}