Files
2025-10-27 17:39:18 -04:00

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; }
}