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