Remotely/Desktop.Core/Enums/ButtonAction.cs
2021-07-29 07:56:49 -07:00

13 lines
179 B
C#

using System;
using System.Collections.Generic;
using System.Text;
namespace Remotely.Desktop.Core.Enums
{
public enum ButtonAction
{
Down,
Up
}
}