using System.Collections.Generic; namespace API.Entities { public class Library { public int Id { get; set; } public string Name { get; set; } public string CoverImage { get; set; } public LibraryType Type { get; set; } public ICollection Folders { get; set; } public ICollection AppUsers { get; set; } } }