namespace SabreTools.Data.Models.NintendoDisc { /// /// Platform / console type for a Nintendo disc image /// public enum Platform { /// Platform could not be determined Unknown = 0, /// Nintendo GameCube GameCube = 1, /// Nintendo Wii Wii = 2, } /// /// Wii partition type /// public enum WiiPartitionType : uint { /// Game data partition (DATA) Data = 0, /// System update partition (UPDATE) Update = 1, /// Channel installer partition (CHANNEL) Channel = 2, } }