using System.ComponentModel.DataAnnotations; namespace FreeTubeSync.Model.Database; public class Subscription { [Key] public string id { get; set; } = string.Empty; public string name { get; set; } = string.Empty; public string? thumbnail { get; set; } }