using System; using System.Collections.Generic; using System.Linq; using System.Text; namespace HandBrake.Interop { public class Cropping { public int Top { get; set; } public int Bottom { get; set; } public int Left { get; set; } public int Right { get; set; } } }