26 lines
478 B
C#
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
|
||
|
}
|
||
|
}
|