using System.Collections.Generic; namespace Wizard; public class PlayPtnWithToken { public List PlayPtn { get; private set; } public AISinglePlayptnRecord Record { get; private set; } public List TokenPtn { get; private set; } public PlayPtnWithToken(List playPtn, AISinglePlayptnRecord record, List tokenPtn) { PlayPtn = playPtn; Record = record; TokenPtn = tokenPtn; } }