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