using System.ComponentModel.DataAnnotations; namespace FreeTubeSync.Model; public class Playlist : BaseModel { [Key] public string _id { get; set; } = string.Empty; public string playlistName { get; set; } = string.Empty; public bool @protected { get; set; } public List