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

13 lines
268 B
C#

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