mirror of
https://github.com/babalae/better-genshin-impact.git
synced 2026-03-27 09:49:49 +08:00
27 lines
689 B
C#
27 lines
689 B
C#
using BetterGenshinImpact.GameTask.Model.GameUI;
|
|
using CommunityToolkit.Mvvm.ComponentModel;
|
|
using System;
|
|
|
|
namespace BetterGenshinImpact.GameTask.GetGridIcons;
|
|
|
|
[Serializable]
|
|
public partial class GetGridIconsConfig : ObservableObject
|
|
{
|
|
/// <summary>
|
|
/// Grid界面名称
|
|
/// </summary>
|
|
[ObservableProperty]
|
|
private GridScreenName _gridName = GridScreenName.Weapons;
|
|
|
|
// 使用星星作为后缀
|
|
[ObservableProperty]
|
|
private bool _starAsSuffix = false;
|
|
|
|
// 使用等级作为后缀
|
|
[ObservableProperty]
|
|
private bool _lvAsSuffix = false;
|
|
|
|
// 最多获取多少个图标
|
|
[ObservableProperty]
|
|
private int _maxNumToGet = int.MaxValue;
|
|
} |