Files

11 lines
222 B
C#
Raw Permalink Normal View History

2026-06-15 11:34:31 +08:00
using System.Collections.Generic;
namespace BingoBrain
{
public class CardBoardData
{
public int index;
public List<int> cardNumList = new();
public List<int> selectList = new();
}
}