Split into legacy (Framework 4.8) and .NET 8 projects, WIP .NET 8 fixes

This commit is contained in:
N00MKRAD
2024-08-12 10:47:19 +02:00
parent 6c406a4846
commit b520d7212d
340 changed files with 50433 additions and 0 deletions

View File

@@ -0,0 +1,17 @@
namespace Flowframes.Data.Streams
{
public class DataStream : Stream
{
public DataStream(string codec, string codecLong)
{
base.Type = StreamType.Data;
Codec = codec;
CodecLong = codecLong;
}
public override string ToString()
{
return $"{base.ToString()}";
}
}
}