11 lines
211 B
C#
11 lines
211 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
|
|
namespace Shared.DTO.Integracion_DGA;
|
|
|
|
public partial class CabClientesDma
|
|
{
|
|
public int? IdCliente { get; set; }
|
|
|
|
public string? IdDma { get; set; }
|
|
}
|