Files
Mapo-IOB-WIN/IOB-UT-NEXT/Config/Mem/MemArea.cs
T

23 lines
503 B
C#

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
{
/// <summary>
/// Indirizzo inizio area da acquisire
/// </summary>
public int AddressStart { get; set; } = 0;
/// <summary>
/// Dimensione del set di indirizzi da recuperare
/// </summary>
public int AddressSize { get; set; } = 0;
}
}