16 lines
275 B
C#
16 lines
275 B
C#
namespace Inspectron.HawkEye.RTSP.Sdp
|
|
{
|
|
public class Bandwidth
|
|
{
|
|
public Bandwidth()
|
|
{
|
|
}
|
|
|
|
internal static Bandwidth Parse(string value)
|
|
{
|
|
//TODO really parse.
|
|
return new Bandwidth();
|
|
}
|
|
}
|
|
}
|