using System.Net.Http.Headers;
namespace Elsa.Http.Options;
///
/// Options for downloading a file.
///
public class FileDownloadOptions
{
///
/// Gets or sets the entity tag.
///
public EntityTagHeaderValue? ETag { get; set; }
///
/// Gets or sets the range.
///
public RangeHeaderValue? Range { get; set; }
}