Files
2025-08-19 12:45:50 +02:00

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();
}
}
}