Files
better-genshin-impact/BetterGenshinImpact/GameTask/AutoSkip/Model/ExpeditionCharacterCard.cs
2024-08-14 18:01:02 +08:00

23 lines
499 B
C#

using OpenCvSharp;
using System.Collections.Generic;
namespace BetterGenshinImpact.GameTask.AutoSkip.Model;
public class ExpeditionCharacterCard
{
public string? Name { get; set; }
public bool Idle { get; set; } = true;
public string? Addition { get; set; }
public List<Rect> Rects { get; set; } = [];
//public ExpeditionCharacterCard(string name,string addition, bool idle)
//{
// Name = name;
// Addition = addition;
// Idle = idle;
//}
}