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

15 lines
323 B
C#
Raw Normal View History

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