Class UpdateTenantCommand
- Namespace
- KadicAuth.Application.Tenants.Commands
- Assembly
- KadicAuth.Application.dll
public sealed record UpdateTenantCommand : IRequest<Result<string>>, IBaseRequest
- Inheritance
-
object
UpdateTenantCommand
- Implements
-
IRequest<Result<string>>
IBaseRequest
Constructors
UpdateTenantCommand(Guid, string, string, string, string, Guid, string?, string?)
public UpdateTenantCommand(Guid Id, string Slug, string Name, string Domain, string Region, Guid PlanId, string? Description = null, string? LogoBase64 = null)
Parameters
Id Guid
Slug string
Name string
Domain string
Region string
PlanId Guid
Description string
LogoBase64 string
Properties
Description
public string? Description { get; init; }
Property Value
- string
Domain
public string Domain { get; init; }
Property Value
- string
Id
public Guid Id { get; init; }
Property Value
- Guid
LogoBase64
public string? LogoBase64 { get; init; }
Property Value
- string
Name
public string Name { get; init; }
Property Value
- string
PlanId
public Guid PlanId { get; init; }
Property Value
- Guid
Region
public string Region { get; init; }
Property Value
- string
Slug
public string Slug { get; init; }
Property Value
- string