mirror of
https://github.com/simtactics/mysimulation.git
synced 2025-03-22 17:32:23 +00:00
9 lines
161 B
C#
9 lines
161 B
C#
|
namespace FSO.Server.Protocol.Electron.Model
|
|||
|
{
|
|||
|
public interface IActionResponse
|
|||
|
{
|
|||
|
bool Success { get; }
|
|||
|
object OCode { get; }
|
|||
|
}
|
|||
|
}
|