// // System.Drawing.Imaging.PropertyItem.cs // // (C) 2002 Ximian, Inc. http://www.ximian.com // Author: Everaldo Canuto // eMail: everaldo.canuto@bol.com.br // Dennis Hayes (dennish@raytek.com) // using System; namespace System.Drawing.Imaging { public sealed class PropertyItem { // properties [MonoTODO] public int Id { get { throw new NotImplementedException (); } set { throw new NotImplementedException (); } } [MonoTODO] public int Len { get { throw new NotImplementedException (); } set { throw new NotImplementedException (); } } [MonoTODO] public short Type { get { throw new NotImplementedException (); } set { throw new NotImplementedException (); } } [MonoTODO] public byte[] Value { get { throw new NotImplementedException (); } set { throw new NotImplementedException (); } } } }