28 lines
905 B
C#
28 lines
905 B
C#
using Newtonsoft.Json;
|
|
using System;
|
|
using System.Collections.Generic;
|
|
using System.ComponentModel.DataAnnotations;
|
|
using System.Linq;
|
|
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 string? refreshToken { get; set; }
|
|
public DateTime expiresAt { get; set; }
|
|
public int expiresInSeconds { get; set; }
|
|
}
|
|
}
|