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