mirror of
https://github.com/status-im/nft-faucet.git
synced 2025-02-23 20:18:24 +00:00
12 lines
276 B
C#
12 lines
276 B
C#
namespace NftFaucet.Plugins;
|
|
|
|
public interface ITokenUploadLocation
|
|
{
|
|
public Guid Id { get; }
|
|
public Guid TokenId { get; }
|
|
public string Name { get; }
|
|
public string Location { get; }
|
|
public DateTime CreatedAt { get; }
|
|
public Guid UploaderId { get; }
|
|
}
|