yavsc/GoogleCode/GoogleTranslate/Objects/Error/ErrorData.cs

11 lines
309 B
C#
Raw Normal View History

2018-12-11 09:15:16 +00:00
namespace GoogleTranslateNET.Objects.Error
{
public class ErrorData
{
public string Domain { get; set; }
public string Reason { get; set; }
public string Message { get; set; }
public string LocationType { get; set; }
public string Location { get; set; }
}
}