using Infrastructure.Application; using IoT.Shared.Application.Domain.Entities; using System; using System.Collections.Generic; namespace Platform.ViewModels { public class HomeModel : PagedList { public bool ShowAll { get; set; } public Guid? OrganId { get; set; } public Guid? BuildingId { get; set; } public Organ Organ { get; set; } public Building Building { get; set; } public List Organs { get; set; } = new List(); public List Buildings { get; set; } = new List(); public List Deviceses { get; set; } = new List(); } }