Updated Playlist, SearchHistory and Video

Changed all ints to longs for field datatypes dealing with Unix
timestamp.
This commit is contained in:
Mario Steele 2025-07-19 12:41:50 -05:00
parent 2e27078443
commit a61362e9b5
3 changed files with 5 additions and 5 deletions

View file

@ -8,7 +8,7 @@ public class SearchHistory
{
[Key]
public string _id { get; set; } = string.Empty;
public int lastUpdatedAt { get; set; }
public long lastUpdatedAt { get; set; }
public void Update(SearchHistory other)
{