mirror of
https://gitee.com/ccnetcore/Yi
synced 2026-03-14 05:26:38 +08:00
14 lines
276 B
C#
14 lines
276 B
C#
|
|
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; }
|
||
|
|
|
||
|
|
}
|
||
|
|
}
|