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