mirror of
https://github.com/status-im/nft-faucet.git
synced 2025-02-24 20:48:24 +00:00
11 lines
310 B
C#
11 lines
310 B
C#
|
namespace NftFaucetRadzen.Plugins;
|
||
|
|
||
|
public class TokenUploadLocation : ITokenUploadLocation
|
||
|
{
|
||
|
public Guid Id { get; set; } = Guid.NewGuid();
|
||
|
public string Name { get; set; }
|
||
|
public string Location { get; set; }
|
||
|
public DateTime CreatedAt { get; set; }
|
||
|
public Guid UploaderId { get; set; }
|
||
|
}
|