10 lines
259 B
C#
10 lines
259 B
C#
|
|
using System.Diagnostics.CodeAnalysis;
|
||
|
|
|
||
|
|
namespace FreeTubeSync.Model.Json;
|
||
|
|
|
||
|
|
[SuppressMessage("ReSharper", "InconsistentNaming")]
|
||
|
|
public class SearchHistoryJson
|
||
|
|
{
|
||
|
|
public string _id { get; set; } = string.Empty;
|
||
|
|
public long lastUpdatedAt { get; set; }
|
||
|
|
}
|