nft-faucet/NftFaucet/Plugins/ITokenUploadLocation.cs
2022-09-29 23:11:55 -05:00

12 lines
276 B
C#

namespace NftFaucet.Plugins;
public interface ITokenUploadLocation
{
public Guid Id { get; }
public Guid TokenId { get; }
public string Name { get; }
public string Location { get; }
public DateTime CreatedAt { get; }
public Guid UploaderId { get; }
}