Remotely/Shared/Enums/Platform.cs
2020-03-10 12:37:44 -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
}
}