123456789101112131415161718192021222324252627282930 |
- using System;
- using System.Collections.Generic;
- using System.Linq;
- using System.Text.Json;
- using System.Threading.Tasks;
- namespace JsonRPC4.Router
- {
- public class RpcServerConfiguration
- {
- public JsonSerializerOptions JsonSerializerSettings
- {
- get;
- set;
- }
- public bool ShowServerExceptions
- {
- get;
- set;
- }
- public int? BatchRequestLimit
- {
- get;
- set;
- }
- }
- }
|