Files
work-club-manager/backend/WorkClub.Domain/Interfaces/ITenantEntity.cs
T

14 lines
364 B
C#
Raw Normal View History

namespace WorkClub.Domain.Interfaces;
/// <summary>
/// Marker interface for tenant-aware entities.
/// All domain entities must implement this to support multi-tenancy.
/// </summary>
public interface ITenantEntity
{
/// <summary>
/// Gets or sets the tenant ID (Finbuckle multi-tenant identifier).
/// </summary>
string TenantId { get; set; }
}