ChangeLog: Updated ChangeLog
[mono.git] / mcs / class / System.Drawing / System.Drawing.Imaging / PropertyItem.cs
1 //
2 // System.Drawing.Imaging.PropertyItem.cs
3 //
4 // Authors:
5 //   Everaldo Canuto (everaldo.canuto@bol.com.br)
6 //   Andreas Nahr (ClassDevelopment@A-SoftTech.com)
7 //   Dennis Hayes (dennish@raytek.com)
8 //
9 // (C) 2002 Ximian, Inc.  http://www.ximian.com
10 //
11
12 using System;
13
14 namespace System.Drawing.Imaging {
15
16         public sealed class PropertyItem 
17         {
18
19                 int id;
20                 int len;
21                 short type;
22                 byte[] value;
23
24                 //constructor
25                 internal PropertyItem()
26                 {
27                         //Nothing to be done here
28                 }
29
30
31                 // properties
32                 public int Id {
33                         get { return id; }
34                         set { id = value; }
35                 }
36
37                 public int Len {
38                         get { return len; }
39                         set { len = value; }
40                 }
41
42                 public short Type {
43                         get { return type; }
44                         set { type = value; }
45                 }
46
47                 public byte[] Value {
48                         get { return this.value; }
49                         set { this.value = value; }
50                 }
51
52         }
53
54 }