mirror of
https://github.com/status-im/nft-faucet.git
synced 2025-02-24 04:28:29 +00:00
12 lines
317 B
C#
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; }
|
|
}
|