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