17 lines
412 B
C#
17 lines
412 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Text;
|
|
|
|
namespace Common.Models.Identity
|
|
{
|
|
public class AuthResponse
|
|
{
|
|
public string Id { get; set; }
|
|
public string UserName { get; set; }
|
|
public string Fullname { get; set; }
|
|
public List <string>? Roles { get; set; }
|
|
public string Token { get; set; }
|
|
public byte[]? img { get; set; }
|
|
}
|
|
}
|