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; } } }