You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
iot/projects/Platform/ViewModels/HomeModel.cs

26 lines
680 B

using Infrastructure.Application;
using IoT.Shared.Application.Domain.Entities;
using System;
using System.Collections.Generic;
namespace Platform.ViewModels
{
public class HomeModel : PagedList<IoTDevice>
{
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<Organ> Organs { get; set; } = new List<Organ>();
public List<Building> Buildings { get; set; } = new List<Building>();
public List<IoTDevice> Deviceses { get; set; } = new List<IoTDevice>();
}
}