using System.ComponentModel.DataAnnotations.Schema; using Marco.Pms.Model.Entitlements; using Microsoft.AspNetCore.Mvc.ModelBinding.Validation; namespace Marco.Pms.Model.Utilities { public class TenantTest { public int TenantId { get; set; } [ValidateNever] [ForeignKey(nameof(TenantId))] public Tenant? Tenant { get; set; } } }