52 lines
813 B
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 Video
{
public TimeSpan Duration
{
get
{
throw new NotImplementedException();
}
}
public int Width
{
get
{
throw new NotImplementedException();
}
}
public int Height
{
get
{
throw new NotImplementedException();
}
}
public float FramesPerSecond
{
get
{
throw new NotImplementedException();
}
}
public VideoSoundtrackType VideoSoundtrackType
{
get
{
throw new NotImplementedException();
}
}
}
}