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; }
|
|
|
|
}
|
|
}
|