Files
MariesWonderland/src/Models/Entities/EntityIUserMovie.cs

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