using Newtonsoft.Json; namespace Nop.Plugin.Misc.Zettle.Domain.Api; /// /// Represents base request object /// public abstract class ApiRequest : IApiRequest { /// /// Gets the request base URL /// [JsonIgnore] public abstract string BaseUrl { get; } /// /// Gets the request path /// [JsonIgnore] public abstract string Path { get; } /// /// Gets the request method /// [JsonIgnore] public abstract string Method { get; } }