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; } }