mirror of
https://github.com/gwdevhub/Daybreak.git
synced 2026-09-20 07:15:16 +00:00
9 lines
124 B
C#
9 lines
124 B
C#
namespace Daybreak.Shared.Models;
|
|
|
|
public enum InternetConnectionState
|
|
{
|
|
Undefined,
|
|
Unavailable,
|
|
Available
|
|
}
|