mirror of
https://github.com/NexusForever/NexusForever
synced 2026-08-14 00:26:05 -04:00
Moved from database first to code first. Upgraded to EFCore 3.1. Upgraded to .NET Core 3.1.
18 lines
589 B
C#
18 lines
589 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
|
|
namespace NexusForever.Database.Character.Model
|
|
{
|
|
public class CharacterQuestModel
|
|
{
|
|
public ulong Id { get; set; }
|
|
public ushort QuestId { get; set; }
|
|
public byte State { get; set; }
|
|
public byte Flags { get; set; }
|
|
public uint? Timer { get; set; }
|
|
public DateTime? Reset { get; set; }
|
|
|
|
public CharacterModel Character { get; set; }
|
|
public ICollection<CharacterQuestObjectiveModel> QuestObjective { get; set; } = new HashSet<CharacterQuestObjectiveModel>();
|
|
}
|
|
}
|