17 lines
No EOL
449 B
C#
17 lines
No EOL
449 B
C#
using System.ComponentModel.DataAnnotations;
|
|
using System.Diagnostics.CodeAnalysis;
|
|
|
|
namespace FreeTubeSync.Model;
|
|
|
|
[SuppressMessage("ReSharper", "InconsistentNaming")]
|
|
public class SearchHistory
|
|
{
|
|
[Key]
|
|
public string _id { get; set; } = string.Empty;
|
|
public long lastUpdatedAt { get; set; }
|
|
|
|
public void Update(SearchHistory other)
|
|
{
|
|
if (other.lastUpdatedAt != lastUpdatedAt) lastUpdatedAt = other.lastUpdatedAt;
|
|
}
|
|
} |