using Infrastructure.Domain;
using System.Collections.Generic;
using System.ComponentModel.DataAnnotations;
namespace IoT.Shared.Application.Domain.Entities
{
[Display(Name = "区域")]
[Scope]
[Group("平台配置", "Settings")]
public class Area : BaseTreeEntity
{
public AreaType Type { get; set; }
public string CustomType { get; set; }
public List Organs { get; set; } = new List();
public List Buildings { get; set; } = new List();
}
}