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