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

11 lines
309 B
C#

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; }
}
}