10 lines
194 B
C#
10 lines
194 B
C#
|
|
using System.ComponentModel.DataAnnotations;
|
||
|
|
|
||
|
|
namespace FreeTubeSync.Model.Database;
|
||
|
|
|
||
|
|
public class Setting
|
||
|
|
{
|
||
|
|
[Key]
|
||
|
|
public string _id { get; set; }
|
||
|
|
public string value { get; set; }
|
||
|
|
}
|