mirror of
https://github.com/babalae/better-genshin-impact.git
synced 2026-04-08 12:30:42 +08:00
23 lines
502 B
C#
23 lines
502 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; } = new();
|
|
|
|
//public ExpeditionCharacterCard(string name,string addition, bool idle)
|
|
//{
|
|
// Name = name;
|
|
// Addition = addition;
|
|
// Idle = idle;
|
|
//}
|
|
} |