23 lines
544 B
C#
23 lines
544 B
C#
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
|
|
{
|
|
/// <summary>
|
|
/// Ext ref for Material
|
|
/// </summary>
|
|
public int RawItemId { get; set; } = 0;
|
|
/// <summary>
|
|
/// Qty, se > 0 rappresenta un IMPEGNO di qualsiasi tipo, se < 0 è un CONSUMO
|
|
/// </summary>
|
|
public int Qty { get; set; } = 0;
|
|
|
|
}
|
|
}
|