13 lines
165 B
C#
13 lines
165 B
C#
|
namespace BlueWest.Data.Application
|
||
|
{
|
||
|
public enum OperatingSystemType
|
||
|
{
|
||
|
MacOS,
|
||
|
iOS,
|
||
|
Windows,
|
||
|
Android,
|
||
|
Linux
|
||
|
}
|
||
|
}
|
||
|
|