Ramón Tomás cecdc40ac1 Fix Authentication issue in Locations.api
Created input in user campaigns view to update the user's location
2017-09-15 13:54:48 +02:00

14 lines
261 B
C#

using System;
using System.Collections.Generic;
using System.Linq;
using System.Threading.Tasks;
namespace WebMVC.Models
{
public class LocationDTO
{
public double Longitude { get; set; }
public double Latitude { get; set; }
}
}