namespace SecuritySystemContracts.ViewModels { public class ReportSecureComponentViewModel { public string SecureName { get; set; } = string.Empty; public int TotalCount { get; set; } public List> Components { get; set; } = new(); } }