using AutoMapper; using AipGateway.API.Domain.Entities; namespace AipGateway.API.Domain.Models { public class AipApiCallLog { public Int64 Id { get; set; } public DateTime LogDate { get; set; } public short ApiId { get; set; } public string ApiGuid { get; set; } public DateTime? StartedAt { get; set; } public DateTime? CompletedAt { get; set; } public string? CallIpAddr { get; set; } public int? CallResult { get; set; } public string? CallMessage { get; set; } } }