Remotely/Shared/Enums/Platform.cs
2021-07-29 07:56:07 -07:00

15 lines
205 B
C#

using System;
using System.Collections.Generic;
using System.Text;
namespace Remotely.Shared.Enums
{
public enum Platform
{
Windows,
Linux,
OSX,
Unknown
}
}