PIbd-22_Smirnov_A.A._Securi.../SecuritySystem/SecuritySystemContracts/ViewModels/ReportSecureSensorsViewModel.cs

19 lines
454 B
C#
Raw Normal View History

2024-05-08 00:49:35 +04:00
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace SecuritySystemContracts.ViewModels
{
public class ReportSecureSensorViewModel
{
public string SecureName { get; set; } = string.Empty;
public int TotalCount { get; set; }
//список кортежей
public List<(string Sensor, int Count)> Sensors { get; set; } = new();
}
}