Files
YouTube-Manager/Manager.Data/Models/LibraryContext/ClientAccountEntity.cs
2025-08-16 16:46:56 +02:00

9 lines
302 B
C#

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