blob: 4eb5f2e9cf5c645fc7044e1452e276cb69fa7db4 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
using System.Text.Json.Serialization;
namespace LibMatrix;
public class WhoAmIResponse {
[JsonPropertyName("user_id")]
public string? UserId { get; set; } = null!;
[JsonPropertyName("device_id")]
public string? DeviceId { get; set; }
[JsonPropertyName("is_guest")]
public bool? IsGuest { get; set; }
}
|