using Newtonsoft.Json; namespace Nop.Plugin.Tax.Avalara.ItemClassificationAPI; /// /// Represents base request to the service /// public abstract class Request { /// /// Gets the request path /// [JsonIgnore] public abstract string Path { get; } /// /// Gets the request method /// [JsonIgnore] public abstract string Method { get; } }