namespace Manager.Data.Models.LibraryContext; public class ClientAccountEntity : DateTimeBase { public Guid Id { get; set; } public string Name { get; set; } = ""; public List Playlists { get; set; } = []; public List HttpCookies { get; set; } = []; }