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