Files
YouTube-Manager/Manager.Data/Models/LibraryContext/ClientAccountEntity.cs

12 lines
409 B
C#

using System.ComponentModel.DataAnnotations;
namespace Manager.Data.Models.LibraryContext;
public class ClientAccountEntity : DateTimeBase
{
public Guid Id { get; set; }
[MaxLength(DataConstants.DbContext.DefaultDbStringSize)]
public string Name { get; set; } = "";
public List<PlaylistEntity> Playlists { get; set; } = [];
public List<HttpCookieEntity> HttpCookies { get; set; } = [];
}