We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents 599acf4 + 2116e4e commit 37e656aCopy full SHA for 37e656a
Server/ShokoInternal/AnimeSeries_User.cs
@@ -16,7 +16,7 @@ public class AnimeSeries_User : ICloneable
16
public int PlayedCount { get; set; }
17
public int WatchedCount { get; set; }
18
public int StoppedCount { get; set; }
19
-
+ public DateTime? LastEpisodeUpdate { get; set; }
20
21
#endregion
22
@@ -33,7 +33,8 @@ public object Clone()
33
WatchedDate = WatchedDate,
34
PlayedCount = PlayedCount,
35
WatchedCount = WatchedCount,
36
- StoppedCount = StoppedCount
+ StoppedCount = StoppedCount,
37
+ LastEpisodeUpdate = LastEpisodeUpdate,
38
};
39
}
40
0 commit comments