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; } }