using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace Neo.LegitimateLicences.Api.Helpers { public class JsonBaseResult { public bool Success { get; set; } public object Result { get; set; } public string ErrorCode { get; set; } public string Error { get; set; } } }