SafeDispatch/LibrarySDR/Enums/GroupMonitorExtResult.cs
2024-02-22 18:43:59 +02:00

17 lines
281 B
C#

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace LibrarySDR.Enums
{
public enum GroupMonitorExtResult
{
OK = 0,
NotFound = 1,
NotAllowed = 2,
Error = 3
}
}