11 lines
233 B
C#

namespace Marco.Pms.Model.Dtos.Authentication
{
public class LoginDto
{
public string? Username { get; set; }
public string? Password { get; set; }
public string? DeviceToken { get; set; }
}
}