- using System;
- using System.Collections.Generic;
- using System.Linq;
- using System.Text;
- using System.Text.Json.Serialization;
- using System.Threading.Tasks;
- namespace AipGateway.API.Domain.Models.Response
- {
- public class ResponseFile : ResponseBase
- {
- public string actualFileName { get; set; } = string.Empty;
- }
- }
|