12 lines
312 B
C#
12 lines
312 B
C#
namespace PlotLine.ViewModels;
|
|
|
|
public sealed class WordCompanionHostViewModel
|
|
{
|
|
public bool IsAuthenticated { get; init; }
|
|
public bool IsAdmin { get; init; }
|
|
public int? UserID { get; init; }
|
|
public string? DisplayName { get; init; }
|
|
public string LoginUrl { get; init; } = string.Empty;
|
|
}
|
|
|