11 lines
272 B
C#
11 lines
272 B
C#
|
|
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; }
|
||
|
|
}
|