//
// Copyright (c) alveus.dev. All rights reserved. Licensed under the MIT License.
//
using System.Net;
namespace Astral.Services.Dtos;
///
/// Common members across authentication dtos.
///
public class BaseAuthenticationDto
{
///
/// IP address of the requesting agent.
///
public IPAddress IpAddress { get; set; }
}