nft-faucet/NftFaucetRadzen/Plugins/TokenUploadLocation.cs

11 lines
310 B
C#
Raw Normal View History

2022-08-30 21:09:30 -05:00
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; }
}