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

26 lines
478 B
C#
Raw Normal View History

2019-05-20 00:21:54 +00:00
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
}
}