mirror of
https://github.com/BillyCool/MariesWonderland.git
synced 2026-03-28 17:52:23 +01:00
15 lines
288 B
C#
15 lines
288 B
C#
using MariesWonderland.Models.Type;
|
|
|
|
namespace MariesWonderland.Models.Entities;
|
|
|
|
public class EntityIUserMovie
|
|
{
|
|
public long UserId { get; set; }
|
|
|
|
public int MovieId { get; set; }
|
|
|
|
public long LatestViewedDatetime { get; set; }
|
|
|
|
public long LatestVersion { get; set; }
|
|
}
|