mirror of
https://github.com/status-im/nft-faucet.git
synced 2025-02-24 12:38:30 +00:00
11 lines
268 B
C#
11 lines
268 B
C#
namespace NftFaucetRadzen.Models;
|
|
|
|
public class NewFileModel
|
|
{
|
|
public string Name { get; set; }
|
|
public string Description { get; set; }
|
|
public string FileData { get; set; }
|
|
public string FileName { get; set; }
|
|
public long? FileSize { get; set; }
|
|
}
|