mirror of
https://github.com/n00mkrad/flowframes.git
synced 2025-12-25 04:39:25 +01:00
Split into legacy (Framework 4.8) and .NET 8 projects, WIP .NET 8 fixes
This commit is contained in:
17
Flowframes/Data/Streams/DataStream.cs
Normal file
17
Flowframes/Data/Streams/DataStream.cs
Normal 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()}";
|
||||
}
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user