mirror of
https://github.com/BillyCool/MariesWonderland.git
synced 2026-05-06 12:53:38 +02:00
21 lines
466 B
C#
21 lines
466 B
C#
using MariesWonderland.Models.Type;
|
|
|
|
namespace MariesWonderland.Models.Entities;
|
|
|
|
public class EntityIUserMission : IUserEntity
|
|
{
|
|
public long UserId { get; set; }
|
|
|
|
public int MissionId { get; set; }
|
|
|
|
public long StartDatetime { get; set; }
|
|
|
|
public int ProgressValue { get; set; }
|
|
|
|
public MissionProgressStatusType MissionProgressStatusType { get; set; }
|
|
|
|
public long ClearDatetime { get; set; }
|
|
|
|
public long LatestVersion { get; set; }
|
|
}
|