mirror of
https://github.com/status-im/nft-faucet.git
synced 2025-02-24 12:38:30 +00:00
11 lines
249 B
C#
11 lines
249 B
C#
namespace NftFaucetRadzen.Plugins;
|
|
|
|
public interface ITokenUploadLocation
|
|
{
|
|
public Guid Id { get; }
|
|
public string Name { get; }
|
|
public string Location { get; }
|
|
public DateTime CreatedAt { get; }
|
|
public Guid UploaderId { get; }
|
|
}
|