11 lines
222 B
C#
11 lines
222 B
C#
using System.Collections.Generic;
|
|
|
|
namespace BingoBrain
|
|
{
|
|
public class CardBoardData
|
|
{
|
|
public int index;
|
|
public List<int> cardNumList = new();
|
|
public List<int> selectList = new();
|
|
}
|
|
} |