145 lines
2.1 KiB
C#
Raw Normal View History

using System;
// This file is part of the ANX.Framework created by the
// "ANX.Framework developer group" and released under the Ms-PL license.
// For details see: http://anxframework.codeplex.com/license
namespace ANX.Framework.Media
{
public sealed class Song : IEquatable<Song>, IDisposable
{
public bool IsDisposed
{
get
{
throw new NotImplementedException();
}
}
public string Name
{
get
{
throw new NotImplementedException();
}
}
public bool IsRated
{
get
{
throw new NotImplementedException();
}
}
public Artist Artist
{
get
{
throw new NotImplementedException();
}
}
public Album Album
{
get
{
throw new NotImplementedException();
}
}
public Genre Genre
{
get
{
throw new NotImplementedException();
}
}
public TimeSpan Duration
{
get
{
throw new NotImplementedException();
}
}
public int Rating
{
get
{
throw new NotImplementedException();
}
}
public int PlayCount
{
get
{
throw new NotImplementedException();
}
}
public int TrackNumber
{
get
{
throw new NotImplementedException();
}
}
public bool IsProtected
{
get
{
throw new NotImplementedException();
}
}
~Song()
{
Dispose();
}
public Song FromUri(string name, Uri uri)
{
throw new NotImplementedException();
}
public bool Equals(Song other)
{
throw new NotImplementedException();
}
public override bool Equals(object obj)
{
throw new NotImplementedException();
}
public void Dispose()
{
throw new NotImplementedException();
}
public override string ToString()
{
throw new NotImplementedException();
}
public override int GetHashCode()
{
throw new NotImplementedException();
}
public static bool operator ==(Song first, Song second)
{
throw new NotImplementedException();
}
public static bool operator !=(Song first, Song second)
{
throw new NotImplementedException();
}
}
}