2022-10-02 18:19:28 -05:00

12 lines
317 B
C#

namespace NftFaucet.Infrastructure.Models.Dto;
public class UploadLocationDto
{
public Guid Id { get; set; }
public Guid TokenId { get; set; }
public string Name { get; set; }
public string Location { get; set; }
public DateTime CreatedAt { get; set; }
public Guid UploaderId { get; set; }
}