13 lines
268 B
C#
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; }
|
|
}
|