начало реализации модулей фронтенда

This commit is contained in:
2025-01-27 12:56:07 +03:00
parent 66c78b158f
commit fe111af2f3
15 changed files with 36 additions and 174 deletions
-25
View File
@@ -17,28 +17,3 @@ public class JsonCallRequest : ICallRequest
public int ObjectId { get; set; } = -1;
public object? Parameter { get; set; }
}
// public struct HardCallRequest : ICallRequest
// {
// public Guid CallRequestId { get; } = Guid.NewGuid();
// public int CommandId => Command;
// public int ClientId => Client;
// public int ObjectId => Object;
//
// public int Command;
// public int Client;
// public int Object;
// public object Parameter { get; set; }
//
// }
// public class CallRequest : SingletonCallRequest
// {
// public override int RequestTypeId => (int)RequestType.NonParametrized;
// public int ObjectId { get; set; }
// }
//
// public class ParametrizedCallRequest : CallRequest
// {
// public override int RequestTypeId => (int)RequestType.Parametrized;
// public object Parameter { get; set; }
// }