10 lines
211 B
C#
Raw Normal View History

2022-08-27 23:49:54 -05:00
namespace NftFaucetRadzen.Plugins;
public interface ITokenMedia
{
2022-08-28 09:19:21 -05:00
public string FileName { get; }
2022-08-30 21:54:12 -05:00
public string FileType { get; }
public string FileData { get; }
2022-08-28 09:19:21 -05:00
public long FileSize { get; }
}