using System; using System.Collections.Generic; using System.ComponentModel.DataAnnotations; namespace Yi.Framework.DtoModel.RABC.Student { public class StudentCreateInput { public string Name { get; set; } public string Remark { get; set; } } }