Files
psg-oversight-app/LD-SysInfo/Services/LoginResponse.cs

10 lines
205 B
C#

namespace LD_SysInfo.Models
{
public class LoginResponse
{
public string Token { get; set; }
public string Username { get; set; }
public int UserId { get; set; }
}
}