Files
tiku-backend.net/Tiku.Application/Tenancy/TenantOnboardingModels.cs
xiong c497a3ca8d
Some checks failed
ci / release-gate (push) Has been cancelled
清理代码
2026-08-03 12:31:39 +08:00

19 lines
521 B
C#

namespace Tiku.Application.Tenancy;
public sealed record TenantOnboardingStep(
string Code,
bool Required,
bool Completed,
string? Detail);
public sealed record TenantOnboardingStatus(
Guid TenantId,
bool ReadyForStudentTraffic,
int CompletedRequiredSteps,
int RequiredSteps,
IReadOnlyCollection<TenantOnboardingStep> Steps);
public interface ITenantOnboardingService
{
Task<TenantOnboardingStatus> GetStatusAsync(Guid tenantId, CancellationToken cancellationToken = default);
}