using System.ComponentModel.DataAnnotations;
namespace DTO
{
public class AuthenticateModel
[Required]
public string Username { get; set; }
public string Password { get; set; }
}