mirror of
https://github.com/BillyCool/MariesWonderland.git
synced 2026-05-07 05:03:44 +02:00
Initial commit
This commit is contained in:
20
src/Models/Entities/EntityIUserMission.cs
Normal file
20
src/Models/Entities/EntityIUserMission.cs
Normal file
@@ -0,0 +1,20 @@
|
||||
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; }
|
||||
}
|
||||
Reference in New Issue
Block a user