9 lines
251 B
C#
9 lines
251 B
C#
|
|
namespace HiVakil.Common.Models.Api;
|
|||
|
|
|
|||
|
|
public class FileUploadResponse
|
|||
|
|
{
|
|||
|
|
public string FileUrl { get; set; }
|
|||
|
|
public string FileLocation { get; set; }
|
|||
|
|
public string FileName { get; set; }
|
|||
|
|
public bool IsOriginal { get; set; } = true;
|
|||
|
|
}
|