summaryrefslogtreecommitdiffstats
path: root/src/DotNetOpenAuth.Core/Messaging/MultipartContentMember.cs
blob: 2aa33ae7a219f3a85d3c9e1bb4ac5574fced8cff (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
namespace DotNetOpenAuth.Messaging {
	using System;
	using System.Collections.Generic;
	using System.Linq;
	using System.Net.Http;
	using System.Text;
	using System.Threading.Tasks;

	public struct MultipartContentMember {
		public MultipartContentMember(HttpContent content, string name = null, string fileName = null)
			: this() {
			this.Content = content;
			this.Name = name;
			this.FileName = fileName;
		}

		public HttpContent Content { get; set; }

		public string Name { get; set; }

		public string FileName { get; set; }
	}
}