18 lines
427 B
C#
18 lines
427 B
C#
using HL_FristAidPlatform_Models;
|
|
|
|
namespace HL_FristAidPlatform_Help
|
|
{
|
|
public class T_Base_TimeAxis_TempletDetailModel : T_Base_TimeAxis_TempletDetail
|
|
{
|
|
/// <summary>
|
|
/// 所属模板名称
|
|
/// </summary>
|
|
public string TempletName { get; set; }
|
|
|
|
/// <summary>
|
|
/// 时间节点名称
|
|
/// </summary>
|
|
public string TimeAxisName { get; set; }
|
|
}
|
|
}
|