using Newtonsoft.Json; using System; using System.Collections.Generic; using System.Text; namespace MatrixDotNetLib { public class MatrixLoginIdentifier { /// /// Gets or sets the login identifier type (required) /// [JsonProperty("type")] public string IdType { get; set; } /// /// Gets or sets the username (required if IdType is m.id.user) /// [JsonProperty("user")] public string User { get; set; } } }