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 StudentUpdateInput
|
|
{
|
|
public string Name { get; set; }
|
|
public string Remark { get; set; }
|
|
|
|
}
|
|
}
|