mirror of
https://github.com/gwdevhub/Daybreak.git
synced 2026-07-15 15:19:57 +00:00
17 lines
448 B
C#
17 lines
448 B
C#
using Daybreak.Shared.Models.Guildwars;
|
|
using System.ComponentModel;
|
|
using System.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;
|
|
}
|