namespace InnovEnergy.Lib.Channels;
[Flags]
public enum CloseAfter
{
Never = 0b_000,
Error = 0b_001,
Receive = 0b_010,
Transmit = 0b_100,
}