10 lines
222 B
C#
10 lines
222 B
C#
|
|
using System.ComponentModel.DataAnnotations;
|
||
|
|
|
||
|
|
namespace FreeTubeSync.Model.Database;
|
||
|
|
|
||
|
|
public class SearchHistory
|
||
|
|
{
|
||
|
|
[Key]
|
||
|
|
public string _id { get; set; } = string.Empty;
|
||
|
|
public long lastUpdatedAt { get; set; }
|
||
|
|
}
|