18 lines
404 B
C#
18 lines
404 B
C#
|
|
namespace QYZH.InteractiveMagazine.Models.Dto.UserAnswerTaskService
|
||
|
|
{
|
||
|
|
/// <summary>
|
||
|
|
/// 新增学生输入
|
||
|
|
/// </summary>
|
||
|
|
public class AddStudentInput
|
||
|
|
{
|
||
|
|
/// <summary>
|
||
|
|
/// 昵称
|
||
|
|
/// </summary>
|
||
|
|
public string? Name { get; set; }
|
||
|
|
|
||
|
|
/// <summary>
|
||
|
|
/// 头像地址
|
||
|
|
/// </summary>
|
||
|
|
public string? AvatarUrl { get; set; }
|
||
|
|
}
|
||
|
|
}
|