Rob / Application /DTOs /NodeDTOs /UpdateNodeDTO.cs
danylokhodus's picture
Initial clean backend commit
70556b7
Raw
History Blame Contribute Delete
294 Bytes
namespace Application.DTOs.NodeDTOs
{
public class UpdateNodeDTO
{
public int Id { get; set; }
public string Name { get; set; }
public double Latitude { get; set; }
public double Longitude { get; set; }
public NodeType Type { get; set; }
}
}