8 lines
235 B
C#
8 lines
235 B
C#
namespace HealthcareManagerUiWebAssem.Models;
|
|
|
|
public class UserInformation
|
|
{
|
|
public string Name { get; set; } = string.Empty;
|
|
public Guid Id { get; set; } = Guid.Empty;
|
|
public string Role { get; set; } = string.Empty;
|
|
} |