Skip to content

Commit 37e656a

Browse files
authored
Merge pull request #6 from ShokoAnime/add-series-last-updated
Add to 'LastEpisodeUpdate' in 'AnimeSeries_User'
2 parents 599acf4 + 2116e4e commit 37e656a

File tree

1 file changed

+3
-2
lines changed

1 file changed

+3
-2
lines changed

Server/ShokoInternal/AnimeSeries_User.cs

+3-2
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ public class AnimeSeries_User : ICloneable
1616
public int PlayedCount { get; set; }
1717
public int WatchedCount { get; set; }
1818
public int StoppedCount { get; set; }
19-
19+
public DateTime? LastEpisodeUpdate { get; set; }
2020

2121
#endregion
2222

@@ -33,7 +33,8 @@ public object Clone()
3333
WatchedDate = WatchedDate,
3434
PlayedCount = PlayedCount,
3535
WatchedCount = WatchedCount,
36-
StoppedCount = StoppedCount
36+
StoppedCount = StoppedCount,
37+
LastEpisodeUpdate = LastEpisodeUpdate,
3738
};
3839
}
3940
}

0 commit comments

Comments
 (0)