diff options
Diffstat (limited to 'mono/Header.cs')
-rw-r--r-- | mono/Header.cs | 21 |
1 files changed, 21 insertions, 0 deletions
diff --git a/mono/Header.cs b/mono/Header.cs new file mode 100644 index 0000000..702e603 --- /dev/null +++ b/mono/Header.cs @@ -0,0 +1,21 @@ +using System; + +namespace GMime { + public class Header { + public Header () { } + + public Header (string name, string value) + { + Value = value; + Name = name; + } + + public string Name { + get; set; + } + + public string Value { + get; set; + } + } +} |