mirror of
https://github.com/gwdevhub/Daybreak.git
synced 2026-07-21 01:59:49 +00:00
721ee8e494
* Move shared code to Shared project * Move from Realm to Squealify * Rename Daybreak.Shared namespaces * Setup API project to expose a test API
17 lines
456 B
C#
17 lines
456 B
C#
using Daybreak.Shared.Models.Guildwars;
|
|
using System.ComponentModel;
|
|
using System.Windows.Extensions;
|
|
|
|
namespace Daybreak.Models;
|
|
public partial class EventViewModel : INotifyPropertyChanged
|
|
{
|
|
public event PropertyChangedEventHandler? PropertyChanged;
|
|
|
|
[GenerateNotifyPropertyChanged]
|
|
private Event? seasonalEvent;
|
|
[GenerateNotifyPropertyChanged]
|
|
private bool active;
|
|
[GenerateNotifyPropertyChanged]
|
|
private bool upcoming;
|
|
}
|