11 lines
331 B
C#
11 lines
331 B
C#
using LanguageExt.Common;
|
|
using W542.GandalfReborn.Data.Entities.Subject;
|
|
|
|
namespace W542.GandalfReborn.Commands;
|
|
|
|
public class RegisterCommand : IGrCommand<Result<SubjectEntity>>
|
|
{
|
|
public required string Username { get; set; }
|
|
public required string Password { get; set; }
|
|
public required string Email { get; set; }
|
|
}; |