lucidiot/HabitSharp
lucidiot
/
HabitSharp
Archived
1
0
Fork 0
This repository has been archived on 2022-08-04. You can view files and clone it, but cannot push or open issues or pull requests.
HabitSharp/HabitSharp/ParamError.cs

23 lines
581 B
C#

namespace HabitSharp {
/// <summary>
/// Describes a Habitica request parameter error.
/// </summary>
public class ParamError {
/// <summary>
/// The problematic URI parameter name.
/// </summary>
public string Param { get; set; }
/// <summary>
/// The given parameter value.
/// </summary>
public string Value { get; set; }
/// <summary>
/// A message describing the nature of the parameter error.
/// </summary>
public string Message { get; set; }
}
}