package com.example.poker;
public class Pocker {
public String number;
public String colorType;
public Pocker(){
}
public Pocker(String colorType,String number){
this.number = number;
this.colorType = colorType;
}
}