2002-9-2 DennisHayes <dennish@raytek.com>
[mono.git] / mcs / class / System.Drawing / System.Drawing.Imaging / PropertyItem.cs
1 //\r
2 // System.Drawing.Imaging.PropertyItem.cs\r
3 //\r
4 // (C) 2002 Ximian, Inc.  http://www.ximian.com\r
5 // Author: Everaldo Canuto\r
6 // eMail: everaldo.canuto@bol.com.br\r
7 // Dennis Hayes (dennish@raytek.com)\r
8 //\r
9 using System;\r
10 \r
11 namespace System.Drawing.Imaging {\r
12 \r
13         public sealed class PropertyItem {\r
14 \r
15                 // properties\r
16                 //[MonoTODO]\r
17                 public int Id {\r
18                         get { throw new NotImplementedException (); }\r
19                         set { throw new NotImplementedException (); }\r
20                 }\r
21 \r
22                 //[MonoTODO]\r
23                 public int Len {\r
24                         get { throw new NotImplementedException (); }\r
25                         set { throw new NotImplementedException (); }\r
26                 }\r
27 \r
28                 //[MonoTODO]\r
29                 public short Type {\r
30                         get { throw new NotImplementedException (); }\r
31                         set { throw new NotImplementedException (); }\r
32                 }\r
33 \r
34                 //[MonoTODO]\r
35                 public byte[] Value {\r
36                         get { throw new NotImplementedException (); }\r
37                         set { throw new NotImplementedException (); }\r
38                 }\r
39 \r
40         }\r
41 \r
42 }\r