8 lines
359 B
C#
8 lines
359 B
C#
namespace MemberCenter.Api.Contracts;
|
|
|
|
public sealed record TenantRequest(string Name, List<string> Domains, string Status);
|
|
|
|
public sealed record NewsletterListRequest(Guid TenantId, string Name, string Status);
|
|
|
|
public sealed record OAuthClientRequest(Guid? TenantId, string Name, List<string> RedirectUris, string ClientType, string Usage = "tenant_api");
|