10 lines
257 B
C#
10 lines
257 B
C#
|
|
using System.ComponentModel.DataAnnotations;
|
||
|
|
|
||
|
|
namespace GestionIntegral.Api.Dtos.Distribucion
|
||
|
|
{
|
||
|
|
public class ToggleBajaCanillaDto
|
||
|
|
{
|
||
|
|
[Required]
|
||
|
|
public bool DarDeBaja { get; set; } // True para dar de baja, False para reactivar
|
||
|
|
}
|
||
|
|
}
|