Files
Yi.Admin/Yi.Framework.Net6/Yi.Framework.DTOModel/RABC/Student/StudentCreateUpdateInput.cs

14 lines
282 B
C#
Raw Normal View History

2023-01-01 23:51:05 +08:00
using System;
using System.Collections.Generic;
using System.ComponentModel.DataAnnotations;
2023-01-02 14:29:16 +08:00
namespace Yi.Framework.DtoModel.RABC.Student
2023-01-01 23:51:05 +08:00
{
public class StudentCreateUpdateInput
{
public string Name { get; set; }
public string Remark { get; set; }
}
}