using System.Collections.Generic; namespace ZonyLrcTools.Cli.Infrastructure.MusicDecryption { public class DecryptionResult { public byte[] Data { get; protected set; } public Dictionary ExtensionObjects { get; set; } public DecryptionResult(byte[] data) { Data = data; } } }