mirror of
https://github.com/babalae/better-genshin-impact.git
synced 2026-03-29 10:09:49 +08:00
23 lines
499 B
C#
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;
|
|
//}
|
|
} |