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