28 lines
619 B
C#
28 lines
619 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
using MagMan.Core.DTO;
|
|
|
|
namespace MagMan.Core
|
|
{
|
|
public class RestPayload
|
|
{
|
|
public class Materials
|
|
{
|
|
/// <summary>
|
|
/// Elenco materiali x invio POST
|
|
/// </summary>
|
|
public List<MaterialDTO>? MatList { get; set; }
|
|
}
|
|
public class Items
|
|
{
|
|
/// <summary>
|
|
/// Elenco Items x invio POST
|
|
/// </summary>
|
|
public List<ItemDTO>? ItemList { get; set; }
|
|
}
|
|
}
|
|
}
|