Files
Yi.Admin/src/Yi.Framework/Yi.Framework.Application.Contracts/Student/Dtos/StudentUpdateInputVo.cs

15 lines
310 B
C#
Raw Normal View History

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
2023-01-15 14:32:43 +08:00
namespace Yi.Framework.Application.Contracts.Student.Dtos
{
2023-01-15 14:32:43 +08:00
public class StudentUpdateInputVo
{
public long Id { get; set; }
public string Name { get; set; }
}
}