astral-api/Astral.Services/Dtos/BaseAuthenticationDto.cs

18 lines
460 B
C#

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