1234567891011121314151617181920212223242526272829303132 |
-
- using System;
- using IMAPI2.Interop;
- namespace IMAPI2.MediaItem
- {
- interface IMediaItem
- {
-
-
-
- string Path { get; }
-
-
-
- Int64 SizeOnDisc { get; }
-
-
-
- System.Drawing.Image FileIconImage { get; }
-
- bool AddToFileSystem(IFsiDirectoryItem rootItem);
- }
- }
|