13 lines
244 B
C#
13 lines
244 B
C#
namespace Prefab.Domain.Common;
|
|
|
|
/// <summary>
|
|
/// Marks an entity as belonging to a tenant.
|
|
/// </summary>
|
|
public interface ITenant
|
|
{
|
|
/// <summary>
|
|
/// Gets the unique tenant identifier.
|
|
/// </summary>
|
|
Guid TenantId { get; }
|
|
}
|