RequestBase.cs 426 B

12345678910111213141516
  1. using System.Text.Json.Serialization;
  2. namespace AipGateway.API.Domain.Models.Request
  3. {
  4. public class RequestBase
  5. {
  6. public string apiKey { get; set; } = string.Empty;
  7. public string email { get; set; } = string.Empty;
  8. [JsonIgnore]
  9. public string apiGuid { get; set; } = string.Empty;
  10. [JsonIgnore]
  11. public string DecryptKey { get; set; } = string.Empty;
  12. }
  13. }