NonInventPurchasingSystem/CPRNIMS.Infrastructure/ViewModel/Account/LoginVM.cs
2026-06-15 16:41:50 +08:00

18 lines
434 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; }
}
}