dolittle/DotNET.SDK

View on GitHub
Source/Tenancy/Tenant.cs

Summary

Maintainability
A
0 mins
Test Coverage
F
0%
// Copyright (c) Dolittle. All rights reserved.
// Licensed under the MIT license. See LICENSE file in the project root for full license information.

namespace Dolittle.SDK.Tenancy;

/// <summary>
/// Represents a tenant.
/// </summary>
/// <param name="Id">The <see cref="TenantId"/> of the tenant.</param>
public record Tenant(TenantId Id)
{
}