real-zony def1de8467 feat: Completed the NCM decryption tool class.
完成 NCM 解密工具类。
2021-05-31 22:51:10 +08:00

16 lines
361 B
C#

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