mirror of
https://github.com/status-im/nft-faucet.git
synced 2025-02-23 12:08:32 +00:00
14 lines
392 B
C#
14 lines
392 B
C#
using NftFaucet.Domain.Models.Abstraction;
|
|
|
|
namespace NftFaucet.Domain.Models;
|
|
|
|
public class TokenUploadLocation : ITokenUploadLocation
|
|
{
|
|
public Guid Id { get; set; } = Guid.NewGuid();
|
|
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; }
|
|
}
|