12 lines
295 B
C#
12 lines
295 B
C#
|
using System;
|
|||
|
|
|||
|
namespace Model
|
|||
|
{
|
|||
|
public class EduTrainOutput:BaseEntities
|
|||
|
{
|
|||
|
public string TrainTitle { get; set; }
|
|||
|
public DateTime? TrainStartDate { get; set; }
|
|||
|
public DateTime? TrainEndDate { get; set; }
|
|||
|
public int TrainPersonNum { get; set; }
|
|||
|
}
|
|||
|
}
|