All checks were successful
Optimized Build and Deploy / remote-build-and-deploy (push) Successful in 8m32s
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; }
|
|
}
|
|
}
|