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