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