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