mirror of
https://github.com/jcreek/advent-of-code.git
synced 2026-07-12 18:53:47 +00:00
17 lines
467 B
C#
17 lines
467 B
C#
public class BinaryData
|
|
{
|
|
public int Digit0 { get; set; }
|
|
public int Digit1 { get; set; }
|
|
public int Digit2 { get; set; }
|
|
public int Digit3 { get; set; }
|
|
public int Digit4 { get; set; }
|
|
public int Digit5 { get; set; }
|
|
public int Digit6 { get; set; }
|
|
public int Digit7 { get; set; }
|
|
public int Digit8 { get; set; }
|
|
public int Digit9 { get; set; }
|
|
public int Digit10 { get; set; }
|
|
public int Digit11 { get; set; }
|
|
|
|
|
|
} |