20 lines
487 B
C#
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; }
|
|
|
|
}
|
|
}
|