This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// Contains all properties all images have | |
public interface IImageProperties | |
{ | |
// Standard properties | |
int Height { get; set; } | |
int Width { get; set; } | |
// -- end of standard | |
// This holds the more flexible values |