Files

29 lines
659 B
C#

using System.Collections.Generic;
namespace MapoSDK
{
public class fileEmbed
{
#region Public Properties
/// <summary>
/// Array di file da inviare
/// </summary>
public List<smallFile> fileList { get; set; } = new List<smallFile>();
#endregion Public Properties
}
/// <summary>
/// Classe x definire un file (corto) inviato come Json tramite httpost
/// </summary>
public class smallFile
{
#region Public Properties
public string content { get; set; } = "";
public string fileName { get; set; } = "";
#endregion Public Properties
}
}