using Marco.Pms.Model.Entitlements; using Marco.Pms.Model.Projects; using Microsoft.AspNetCore.Mvc.ModelBinding.Validation; using System; using System.Collections.Generic; using System.ComponentModel.DataAnnotations.Schema; using System.ComponentModel.DataAnnotations; using System.ComponentModel; using System.Linq; using System.Text; using System.Threading.Tasks; namespace Marco.Pms.Model.Dtos.Project { public class FloorDot { public int Id { get; set; } [Required] [DisplayName("Floor Name")] public string FloorName { get; set; } public int BuildingId { get; set; } [DisplayName("TenantId")] public int TenantId { get; set; } } }