You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

11 lines
205B

  1. using Newtonsoft.Json;
  2. namespace HealthMonitor.WebApi.Model.Request
  3. {
  4. public class BaseReq
  5. {
  6. [JsonProperty("serialno")]
  7. public string Serialno { get; set; } = default!;
  8. }
  9. }