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

11 lines
253 B
C#
Raw Normal View History

2018-12-11 09:15:16 +00:00
using System.Collections.Generic;
namespace GoogleTranslateNET.Objects.Error
{
public class Error
{
public int Code { get; set; }
public string Message { get; set; }
public List<ErrorData> Errors { get; set; }
}
}