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

14 lines
431 B
C#

using System.ComponentModel.DataAnnotations;
namespace Modules.User.WebApi.Models;
public class ClientInfo
{
public string? Ip { get; set; }
[Required(ErrorMessage = "Fingerprint is required.")]
public string Fingerprint { get; set; } = default!;
public string? Country { get; set; }
public string? City { get; set; }
public decimal? Latitude { get; set; }
public decimal? Longitude { get; set; }
}