Files

11 lines
222 B
C#
Raw Permalink Normal View History

2026-05-28 13:53:12 +08:00
using System.Collections.Generic;
namespace BingoBrain
{
public class CardBoardData
{
public int index;
public List<int> cardNumList = new();
public List<int> selectList = new();
}
}