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