using System.ComponentModel.DataAnnotations;
namespace StopShopping.Services.Models.Req;
///
/// 登录参数
///
///
public record SignInParams
{
///
/// 登录账号
///
///
[Required]
public string Account { get; set; } = string.Empty;
///
/// 登录密码
///
///
[Required]
public string Password { get; set; } = string.Empty;
}