namespace HoneyBox.Admin.Business.Models.Upload; public class PresignedUrlResponse { public bool Success { get; set; } public string? UploadUrl { get; set; } public string? AccessUrl { get; set; } public string? ErrorMessage { get; set; } public DateTime ExpiresAt { get; set; } public string? FileUrl { get; set; } public string? ObjectKey { get; set; } public int ExpiresIn { get; set; } public string? StorageType { get; set; } }