NonInventPurchasingSystem/CPRNIMS.Infrastructure/Dto/Account/LoginRequest.cs
2026-01-26 14:21:31 +08:00

15 lines
303 B
C#

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace CPRNIMS.Infrastructure.Dto.Account
{
public class LoginRequest
{
public string? UserName { get; set; }
public string? Password { get; set; }
}
}