using System.Collections.Generic; using API.Entities.Enums; namespace API.DTOs.Stats { public class UsageInfoDto { public UsageInfoDto() { FileTypes = new HashSet(); LibraryTypesCreated = new HashSet(); } public int UsersCount { get; set; } public IEnumerable FileTypes { get; set; } public IEnumerable LibraryTypesCreated { get; set; } } public class LibInfo { public LibraryType Type { get; set; } public int Count { get; set; } } }