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; } }