namespace SabreTools.Data.Models.Xbox
{
///
/// XGD1 encrypted challenge response
///
/// Decrypted form is undocumented
public class EncryptedChallengeResponseXGD1
{
///
/// Encrypted response data
///
/// 11 bytes
public byte[] EncryptedData { get; set; } = new byte[11];
}
}