namespace SabreTools.Data.Models.Xbox
{
///
/// XGD2/3 encrypted challenge response
///
/// Encrypted form of
public class EncryptedChallengeResponseXGD23
{
///
/// Encrypted response data
///
/// 12 bytes
public byte[] EncryptedData { get; set; } = new byte[12];
}
}