MyBookmark/Modules.User.Application/Models/ClientInfo.cs
THE_KONDRAT 7b16d72329 ui and login
mongo => postgres
2024-11-03 16:08:39 +03:00

18 lines
400 B
C#

namespace Modules.User.Application.Models;
public class ClientInfo
{
public string? Ip { get; set; }
public string? UserAgent { get; set; }
public Location Location { get; set; } = new();
}
public class Location
{
public double? Latitude { get; set; }
public double? Longutude { get; set; }
public string? Country { get; set; }
public string? Region { get; set; }
}