mirror of
https://github.com/gwdevhub/Daybreak.git
synced 2026-07-26 00:45:18 +00:00
* Move shared code to Shared project * Move from Realm to Squealify * Rename Daybreak.Shared namespaces * Setup API project to expose a test API
9 lines
246 B
C#
9 lines
246 B
C#
using Daybreak.Shared.Models.Guildwars;
|
|
|
|
namespace Daybreak.Shared.Models.FocusView;
|
|
public sealed class QuestLocationEntry : QuestLogEntry
|
|
{
|
|
public override string Title { get; init; } = string.Empty;
|
|
public Map? Map { get; init; }
|
|
}
|