19 lines
454 B
C#
19 lines
454 B
C#
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();
|
|
}
|
|
}
|