using System; using System.Collections.Generic; using System.Linq; using System.Threading.Tasks; namespace ReportWebCore.Models.Http { public class ErrResponse { public string error { get; set; } public string message { get; set; } public ErrResponse() { } public ErrResponse(string error, string message) { this.error = error; this.message = message; } } }