Rob / Application /DTOs /FileDTOs /FileResponseDTO.cs
danylokhodus's picture
Initial clean backend commit
70556b7
Raw
History Blame Contribute Delete
351 Bytes
namespace Application.DTOs.FileDTOs
{
public class FileResponseDTO
{
public int Id { get; set; }
public string FileName { get; set; }
public string FilePath { get; set; }
public string ContentType { get; set; }
public long FileSize { get; set; }
public DateTime UploadedAt { get; set; }
}
}