nft-faucet/NftFaucetRadzen/Plugins/ITokenUploadLocation.cs
2022-08-28 19:11:09 -05:00

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