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

17 lines
354 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; }
2023-01-16 23:05:01 +08:00
public string? Name { get; set; }
public long? Number { get; set; }
}
}