A native .NET C# library for developing Matrix clients.
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

28 lines
726 B

using Newtonsoft.Json;
using System;
using System.Collections.Generic;
using System.Text;
namespace MatrixDotNetLib
{
public class MatrixError
{
/// <summary>
/// Gets or sets the error code (required)
/// </summary>
[JsonProperty("errcode")]
public string ErrorCode { get; set; }
/// <summary>
/// Gets or sets the friendly error message (optional)
/// </summary>
[JsonProperty("error")]
public string ErrorMessage { get; set; }
/// <summary>
/// Gets or sets the delay in milliseconds (optional)
/// </summary>
[JsonProperty("retry_after_ms")]
public Int32 RetryDelay { get; set; }
}
}