using System.Collections.Specialized; namespace Day12; public class WellRecord { public Arrangement Pattern { get; } public Checksum Checksum { get; } public WellRecord(string record, int[] checksum) { Pattern = new Arrangement(record); Checksum = new Checksum(checksum); } // public IEnumerable> GeneratePermuations(int n, int choose) // { // // } }