mirror of
https://github.com/babalae/better-genshin-impact.git
synced 2026-03-25 09:29:49 +08:00
16 lines
279 B
C#
16 lines
279 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace Vision.Recognition.Task.Config
|
|
{
|
|
public class TaskSettings
|
|
{
|
|
string Name { get; set; }
|
|
|
|
bool IsEnabled { get; set; }
|
|
}
|
|
}
|