@dolittle/sdk.tenancy
Version:
Dolittle is a decentralized, distributed, event-driven microservice platform built to harness the power of events.
17 lines (14 loc) • 436 B
text/typescript
// Copyright (c) Dolittle. All rights reserved.
// Licensed under the MIT license. See LICENSE file in the project root for full license information.
import { TenantId } from '@dolittle/sdk.execution';
/**
* Represents a Tenant.
*/
export class Tenant {
/**
* Initializes a new instance of {@link Tenant}.
* @param {TenantId} id - The identifier of the tenant.
*/
constructor(readonly id: TenantId) {
}
}