mirror of
https://github.com/ZuneDev/ZuneShell.dll.git
synced 2026-07-27 13:11:51 -07:00
32 lines
747 B
C#
32 lines
747 B
C#
#if OPENZUNE
|
|
|
|
using System;
|
|
using System.IO;
|
|
using System.Linq;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace OwlCore.AbstractStorage
|
|
{
|
|
/// <inheritdoc />
|
|
public class FileDataProperties : IFileDataProperties
|
|
{
|
|
private readonly FileInfo _file;
|
|
|
|
/// <summary>
|
|
/// Initializes a new instance of the <see cref="FileDataProperties"/> class.
|
|
/// </summary>
|
|
/// <param name="file">The file to get properties from.</param>
|
|
public FileDataProperties(FileInfo file)
|
|
{
|
|
_file = file;
|
|
}
|
|
|
|
/// <inheritdoc />
|
|
public async Task<MusicFileProperties?> GetMusicPropertiesAsync()
|
|
{
|
|
throw new NotImplementedException();
|
|
}
|
|
}
|
|
}
|
|
|
|
#endif |