Implementation of basic PatchComplianceTask. First real iteration, basic/raw asf.
10 lines
213 B
C#
10 lines
213 B
C#
namespace OversightService.Services
|
|
{
|
|
public class LoginResponse
|
|
{
|
|
public string Token { get; set; }
|
|
public string Username { get; set; }
|
|
public int UserId { get; set; }
|
|
}
|
|
}
|