mirror of
https://gitee.com/ccnetcore/Yi
synced 2026-03-07 02:00:51 +08:00
14 lines
282 B
C#
14 lines
282 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.ComponentModel.DataAnnotations;
|
|
|
|
namespace Yi.Framework.DtoModel.RABC.Student
|
|
{
|
|
public class StudentCreateUpdateInput
|
|
{
|
|
public string Name { get; set; }
|
|
public string Remark { get; set; }
|
|
|
|
}
|
|
}
|