mirror of
https://github.com/real-zony/ZonyLrcToolsX.git
synced 2025-07-01 20:30:41 +00:00
13 lines
370 B
C#
13 lines
370 B
C#
using System.Threading.Tasks;
|
|
using ZonyLrcTools.Cli.Infrastructure.DependencyInject;
|
|
|
|
namespace ZonyLrcTools.Cli.Infrastructure.MusicDecryption
|
|
{
|
|
public class NcmMusicDecryptor : IMusicDecryptor, ITransientDependency
|
|
{
|
|
public Task<byte[]> Convert(byte[] sourceBytes)
|
|
{
|
|
throw new System.NotImplementedException();
|
|
}
|
|
}
|
|
} |