using System.Drawing; namespace NTERA.Engine.Runtime.Resources { public class ImageDefinition { public string Name { get; set; } public string Filename { get; set; } public Rectangle? Dimensions { get; set; } } }