NonInventPurchasingSystem/CPRNIMS.Infrastructure/Dto/Account/LoginResponse.cs
2026-06-18 16:51:31 +08:00

30 lines
982 B
C#

using Newtonsoft.Json;
using System;
using System.Collections.Generic;
using System.ComponentModel.DataAnnotations;
using System.Linq;
using System.Security.Claims;
using System.Text;
using System.Threading.Tasks;
namespace CPRNIMS.Infrastructure.Dto.Account
{
public class LoginResponse
{
public object? data { get; set; }
public bool success { get; set; }
public string? message { get; set; }
public byte messCode { get; set; }
public string? userName { get; set; }
public string? fullName { get; set; }
public string userId { get; set; } = string.Empty;
public string URLAttachment { get; set; } = string.Empty;
public string? token { get; set; }
public string? company { get; set; }
public int? departmentId { get; set; }
public string? refreshToken { get; set; }
public DateTime expiresAt { get; set; }
public int expiresInSeconds { get; set; }
}
}