Spaces:
Paused
Paused
| using System.ComponentModel.DataAnnotations; | |
| namespace Application.DTOs.UserDTOs | |
| { | |
| public class UpdateMyNodeDTO | |
| { | |
| [] | |
| public double Latitude { get; set; } | |
| [] | |
| public double Longitude { get; set; } | |
| public string? Address { get; set; } // Optional address description | |
| } | |
| } | |