namespace eSuite.API.Models; /// /// Data transfer class for unblocking the IP Address /// public class BlockedIPAddress { /// /// IPAddress that will be unblocked /// public string IpAddress { get; set; } = string.Empty; }