10 lines
163 B
C#
10 lines
163 B
C#
|
namespace InnovEnergy.Lib.Channels;
|
||
|
|
||
|
[Flags]
|
||
|
public enum CloseAfter
|
||
|
{
|
||
|
Never = 0b_000,
|
||
|
Error = 0b_001,
|
||
|
Receive = 0b_010,
|
||
|
Transmit = 0b_100,
|
||
|
}
|