namespace Nop.Plugin.Misc.Zettle.Domain.Api; /// /// Represents request with ETag header. /// If the conditional prerequisite is fullfilled, the full resource is returned, otherwise a 304 not modified will be returned with an empty body /// public interface IConditionalRequest { /// /// Gets or sets the ETag header value /// public string ETag { get; set; } }