10 lines
293 B
C#
Raw Normal View History

2024-05-11 11:59:11 +04:00
namespace SecuritySystemContracts.ViewModels
{
public class ReportSecureComponentViewModel
{
public string SecureName { get; set; } = string.Empty;
public int TotalCount { get; set; }
public List<Tuple<string, int>> Components { get; set; } = new();
}
}