namespace SvdCli.Storage { public class TrimDescriptor { public TrimDescriptor(long offset, uint length) { Offset = offset; Length = length; } public TrimDescriptor() { } public long Offset { get; set; } public uint Length { get; set; } } }