mycorerepository/MyCore/DTO/Common/ConnectionStatus.cs

15 lines
239 B
C#

using System;
using System.Collections.Generic;
using System.Linq;
using System.Threading.Tasks;
namespace MyCore.DTO.Common
{
public enum ConnectionStatus
{
Connected = 1,
Disconnected,
Unknown
}
}