mysimulation/server/FSO.Server.Protocol/Electron/Model/IActionRequest.cs

9 lines
168 B
C#
Raw Permalink Normal View History

namespace FSO.Server.Protocol.Electron.Model
{
public interface IActionRequest
{
object OType { get; }
bool NeedsValidation { get; }
}
}