mirror of
https://github.com/babalae/better-genshin-impact.git
synced 2026-05-14 22:07:47 +08:00
15 lines
333 B
C#
15 lines
333 B
C#
using CommunityToolkit.Mvvm.ComponentModel;
|
|
using System;
|
|
|
|
namespace BetterGenshinImpact.GameTask.AutoCook;
|
|
|
|
[Serializable]
|
|
public partial class AutoCookConfig : ObservableObject
|
|
{
|
|
[ObservableProperty]
|
|
private int _checkIntervalMs = 10;
|
|
|
|
[ObservableProperty]
|
|
private bool _stopTaskWhenRecoverButtonDetected = true;
|
|
}
|