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 { /// /// Primary Key RawItem (DB) / CLOUD /// public int RawItemCloudId { get; set; } = 0; /// /// Primary Key RawItem (DB) / istanza locale /// public int RawItemLocalId { get; set; } = 0; /// /// Qty, se > 0 rappresenta un IMPEGNO di qualsiasi tipo, se < 0 è un CONSUMO /// public int Qty { get; set; } = 0; } }