No puede seleccionar más de 25 temas
Los temas deben comenzar con una letra o número, pueden incluir guiones ('-') y pueden tener hasta 35 caracteres de largo.
|
- using Microsoft.Extensions.Options;
- using System;
- using System.Collections.Generic;
- using System.Text;
-
- namespace JT808.DotNetty.CleintBenchmark.Configs
- {
- public class ClientBenchmarkOptions : IOptions<ClientBenchmarkOptions>
- {
- public string IP { get; set; }
- public int Port { get; set; }
- public int DeviceCount { get; set; } = 10;
- /// <summary>
- /// 5000ms毫秒
- /// </summary>
- public int Interval { get; set; } = 5000;
- public ClientBenchmarkOptions Value =>this;
- }
- }
|