11 lines
268 B
C#
Raw Normal View History

2022-08-28 01:04:38 -05:00
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; }
}