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();
    }
}