- using System.Text.Json.Serialization;
- namespace AipGateway.API.Domain.Models.Request
- {
- public class RequestBase
- {
- public string apiKey { get; set; } = string.Empty;
- public string email { get; set; } = string.Empty;
- [JsonIgnore]
- public string apiGuid { get; set; } = string.Empty;
-
- [JsonIgnore]
- public string DecryptKey { get; set; } = string.Empty;
- }
- }
|