//----------------------------------------------------------------------- // // Copyright (c) lanedirt. All rights reserved. // Licensed under the AGPLv3 license. See LICENSE.md file in the project root for full license information. // //----------------------------------------------------------------------- namespace AliasVault.Admin.Main.Models; /// /// Model representing IP addresses with most registrations in the last 72 hours. /// public class RecentUsageRegistrations { /// /// Gets or sets the original IP address (for linking purposes). /// public string OriginalIpAddress { get; set; } = string.Empty; /// /// Gets or sets the anonymized IP address. /// public string IpAddress { get; set; } = string.Empty; /// /// Gets or sets the number of registrations from this IP in the last 72 hours. /// public int RegistrationCount72h { get; set; } }