nft-faucet/NftFaucetRadzen/Plugins/TokenUploadLocation.cs
2022-08-30 21:09:30 -05:00

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; }
}