QlbrcEntityTenant.cs 309 B

1234567891011
  1. using System.ComponentModel.DataAnnotations.Schema;
  2. using Quadarax.Application.QLiberace.Base.Entities.Base;
  3. namespace Quadarax.Application.QLiberace.Common.Entities.Base
  4. {
  5. public abstract class QlbrcEntityTenant : QlbrcEntityTracked, ITenant
  6. {
  7. public long TenantId { get; set; }
  8. }
  9. }