23 lines
594 B
C#
23 lines
594 B
C#
// ***********************************************************************
|
|
// <copyright file="UserExistenceAdapter.cs">
|
|
// AgileWebs
|
|
// </copyright>
|
|
// ***********************************************************************
|
|
|
|
using System.Text.Json.Serialization;
|
|
|
|
namespace Core.Thalos.BuildingBlocks
|
|
{
|
|
/// <summary>
|
|
/// Adapter representing a user.
|
|
/// </summary>
|
|
public class UserExistenceAdapter
|
|
{
|
|
/// <summary>
|
|
/// user existence.
|
|
/// </summary>
|
|
[JsonPropertyName("existence")]
|
|
public bool Existence { get; set; }
|
|
}
|
|
}
|