10 lines
235 B
C#
10 lines
235 B
C#
namespace PlotLine.ViewModels;
|
|
|
|
public sealed class WordCompanionHostViewModel
|
|
{
|
|
public bool IsAuthenticated { get; init; }
|
|
public string? DisplayName { get; init; }
|
|
public string LoginUrl { get; init; } = string.Empty;
|
|
}
|
|
|