namespace zero.Media; /// /// The focal point sets the point of interest in an image with x/y coordinates from 0-1 /// public class MediaFocalPoint { public decimal Left { get; set; } public decimal Top { get; set; } }