mirror of
https://github.com/babalae/better-genshin-impact.git
synced 2026-05-08 00:24:12 +08:00
13 lines
341 B
C#
13 lines
341 B
C#
using CommunityToolkit.Mvvm.ComponentModel;
|
|
|
|
namespace BetterGenshinImpact.ViewModel.Pages;
|
|
|
|
public partial class NotificationEventOption(string code, string displayName) : ObservableObject
|
|
{
|
|
[ObservableProperty] private bool _isSelected;
|
|
|
|
public string Code { get; } = code;
|
|
|
|
public string DisplayName { get; } = displayName;
|
|
}
|