31 lines
731 B
C#
31 lines
731 B
C#
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 WorkAreaDot
|
|
{
|
|
[Key]
|
|
public int Id { get; set; }
|
|
|
|
[Required]
|
|
[DisplayName("Area Name")]
|
|
public string AreaName { get; set; }
|
|
|
|
public int FloorId { get; set; }
|
|
|
|
[DisplayName("TenantId")]
|
|
public int TenantId { get; set; }
|
|
|
|
}
|
|
}
|