mirror of
https://github.com/status-im/nft-faucet.git
synced 2025-02-24 04:28:29 +00:00
11 lines
303 B
C#
11 lines
303 B
C#
namespace NftFaucetRadzen.Plugins;
|
|
|
|
public class Token : IToken
|
|
{
|
|
public Guid Id { get; set; } = Guid.NewGuid();
|
|
public string Name { get; set; }
|
|
public string Description { get; set; }
|
|
public DateTime CreatedAt { get; set; } = DateTime.Now;
|
|
public ITokenMedia Image { get; set; }
|
|
}
|