using System;
using System.Collections.Generic;
using System.ComponentModel.DataAnnotations.Schema;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace MagMan.Core.DTO
{
public class ResourceDTO
{
///
/// Ext ref for Material
///
public int RawItemId { get; set; } = 0;
///
/// Qty, se > 0 rappresenta un IMPEGNO di qualsiasi tipo, se < 0 è un CONSUMO
///
public int Qty { get; set; } = 0;
}
}