Core.Thalos.BuildingBlocks/Core.Cerberos.Adapters/UserExistenceAdapter.cs
Sergio Matias Urquin d5925a6476 Add project files.
2025-04-29 18:57:20 -06:00

23 lines
586 B
C#

// ***********************************************************************
// <copyright file="UserExistenceAdapter.cs">
// Heath
// </copyright>
// ***********************************************************************
using System.Text.Json.Serialization;
namespace Core.Cerberos.Adapters
{
/// <summary>
/// Adapter representing a user.
/// </summary>
public class UserExistenceAdapter
{
/// <summary>
/// user existence.
/// </summary>
[JsonPropertyName("existence")]
public bool Existence { get; set; }
}
}