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
378 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 MediaTypeHeaderValue
  8. {
  9. /// <summary></summary>
  10. public string MediaType { get; set; }
  11. /// <summary></summary>
  12. public MediaTypeHeaderValue(string mediaType) => MediaType = mediaType;
  13. }
  14. }