You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

20 lines
406 B

4 years ago
  1. using System;
  2. using System.Collections.Generic;
  3. using System.Text;
  4. namespace Apewer.AspNetBridge
  5. {
  6. /// <summary></summary>
  7. public class ContentDispositionHeaderValue
  8. {
  9. /// <summary></summary>
  10. public string FileName { get; set; }
  11. /// <summary></summary>
  12. public ContentDispositionHeaderValue(string dispositionType) => FileName = dispositionType;
  13. }
  14. }