mirror of
https://github.com/babalae/better-genshin-impact
synced 2025-01-09 12:31:26 +08:00
16 lines
317 B
C#
16 lines
317 B
C#
using CommunityToolkit.Mvvm.ComponentModel;
|
|
|
|
namespace BetterGenshinImpact.Model;
|
|
|
|
/// <summary>
|
|
/// 脚本执行组
|
|
/// </summary>
|
|
public partial class ScriptGroup : ObservableObject
|
|
{
|
|
/// <summary>
|
|
/// 组名称
|
|
/// </summary>
|
|
[ObservableProperty]
|
|
private string _groupName = string.Empty;
|
|
}
|