using System; namespace SharpRSS.API.Contracts { public class ApiError { public ApiError() { } public bool Logged { get; set; } public string Message { get; set; } = string.Empty; public DateTime Date { get; set; } } }