using System.ComponentModel.DataAnnotations; namespace Nuuru.Server.Models { public class IpCloakEntry { [Key] [MaxLength(45)] public string RawIp { get; set; } = string.Empty; [Required] [MaxLength(50)] public string CloakedIp { get; set; } = string.Empty; public DateTime CreatedAt { get; set; } } }