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

20 lines
487 B
C#

using CPRNIMS.Infrastructure.Models.Account;
using System;
using System.Collections.Generic;
using System.ComponentModel.DataAnnotations;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace CPRNIMS.Infrastructure.ViewModel.Account
{
public class LoginVM : User
{
public int Id { get; set; }
public string? Message { get; set; }
public string? Status { get; set; }
public string? Token { get; internal set; }
}
}