mirror of
https://github.com/real-zony/ZonyLrcToolsX.git
synced 2025-07-04 22:40:41 +00:00
16 lines
361 B
C#
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;
|
|
}
|
|
}
|
|
} |