10 lines
265 B
C#
10 lines
265 B
C#
namespace DigitalData.Auth.Client;
|
|
|
|
public class ClientParams
|
|
{
|
|
#pragma warning disable CS8618 // throw exception in DI extension if it not set
|
|
public string Url { get; set; }
|
|
#pragma warning restore CS8618
|
|
|
|
public readonly ClientEvents Events = new();
|
|
} |