12 lines
255 B
C#
12 lines
255 B
C#
using System.ComponentModel.DataAnnotations;
|
|
using System.Text.Json.Serialization;
|
|
|
|
namespace SPMS.Application.DTOs.Device;
|
|
|
|
public class DeviceDeleteRequestDto
|
|
{
|
|
[Required]
|
|
[JsonPropertyName("device_id")]
|
|
public long DeviceId { get; set; }
|
|
}
|