15 lines
347 B
15 lines
347 B
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace CoviDok.Api.Response
|
|
{
|
|
public class AuthIdentity
|
|
{
|
|
public string Id { get; set; }
|
|
public string FirstName { get; set; }
|
|
public string LastName { get; set; }
|
|
public Role Role { get; set; }
|
|
}
|
|
}
|
|
|