SPMS_API/SPMS.Application/DTOs/Device/DeviceRegisterResponseDto.cs

13 lines
286 B
C#

using System.Text.Json.Serialization;
namespace SPMS.Application.DTOs.Device;
public class DeviceRegisterResponseDto
{
[JsonPropertyName("device_id")]
public string DeviceId { get; set; } = string.Empty;
[JsonPropertyName("is_new")]
public bool IsNew { get; set; }
}