mirror of
https://github.com/babalae/better-genshin-impact.git
synced 2026-03-21 08:39:48 +08:00
13 lines
308 B
C#
13 lines
308 B
C#
using CommunityToolkit.Mvvm.ComponentModel;
|
|
using System;
|
|
using BetterGenshinImpact.Core.Config;
|
|
|
|
namespace BetterGenshinImpact.Core.Script.Group;
|
|
|
|
[Serializable]
|
|
public partial class ScriptGroupConfig : ObservableObject
|
|
{
|
|
[ObservableProperty]
|
|
private PathingPartyConfig _pathingConfig = new();
|
|
}
|