9 lines
302 B
C#
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; } = [];
|
|
} |