23 lines
		
	
	
		
			586 B
		
	
	
	
		
			C#
		
	
	
	
	
	
			
		
		
	
	
			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; }
 | |
|     }
 | |
| }
 | 
