using System; using System.Collections.Generic; using gehGassi.Dto.Common; namespace gehGassi.Dto.WebSite { /// /// DTO for displaying the positions of app users on the website /// public sealed class AppUserLocationItemDto { /// /// AppUser Type /// public AppUserTypeDto Type { get; set; } /// /// Zip /// public string Zip { get; set; } /// /// City /// public string City { get; set; } /// /// Country ISO2 code /// public string Country { get; set; } /// /// Latitude /// public double? Lat { get; set; } /// /// Longitude /// public double? Lng { get; set; } } public sealed class AppUserLocationDto { public int Total { get; set; } public int Skip { get; set; } public int Take { get; set; } public DateTimeOffset? TimeStamp { get; set; } public List Items { get; set; } public AppUserLocationDto() { Items = new List(); } } }