using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace IOB_UT_NEXT.Config.Mem { public class MemAreaDto { /// /// Indirizzo inizio area da acquisire /// public int Start { get; set; } = 0; /// /// Dimensione del set di indirizzi da recuperare /// public int Size { get; set; } = 0; } }