2024-03-24 14:54:52 +04:00
|
|
|
|
namespace SecuritySystemContracts.ViewModels
|
|
|
|
|
{
|
|
|
|
|
public class ReportSecureComponentViewModel
|
|
|
|
|
{
|
2024-03-24 22:28:06 +04:00
|
|
|
|
public string SecureName { get; set; } = string.Empty;
|
2024-03-24 14:54:52 +04:00
|
|
|
|
public int TotalCount { get; set; }
|
2024-03-24 22:28:06 +04:00
|
|
|
|
public List<Tuple<string, int>> Components { get; set; } = new();
|
2024-03-24 14:54:52 +04:00
|
|
|
|
}
|
|
|
|
|
}
|