11 lines
215 B
C#
11 lines
215 B
C#
|
|
using System;
|
||
|
|
|
||
|
|
namespace GestionIntegral.Api.Dtos.Distribucion
|
||
|
|
{
|
||
|
|
public class ToggleBajaDistribuidorDto
|
||
|
|
{
|
||
|
|
public bool DarDeBaja { get; set; }
|
||
|
|
public DateTime? FechaBaja { get; set; }
|
||
|
|
}
|
||
|
|
}
|