This repository has been archived on 2020-12-20. You can view files and clone it, but cannot push or open issues or pull requests.
aurora-sharp-desktop/Aurora/Backend/Models/LocalSong.cs
2019-05-19 20:21:54 -04:00

26 lines
478 B
C#

using System;
using System.IO;
namespace Aurora.Backend.Models
{
public class LocalSong : BaseSong
{
public LocalSong(FileInfo fileInfo)
{
File = fileInfo;
}
#region Properties
public FileInfo File { get; private set; }
#endregion Properties
#region Methods
public override void Play()
{
throw new NotImplementedException();
}
#endregion Methods
}
}