kCura.EDDS.WebAPI.DocumentManagerBase.Redaction
namespace kCura.EDDS.WebAPI.DocumentManagerBase
{
public class Redaction
{
public int ID { get; set; }
public string FileGuid { get; set; }
public decimal X { get; set; }
public decimal Y { get; set; }
public decimal Width { get; set; }
public decimal Height { get; set; }
public int MarkupSetArtifactID { get; set; }
public RedactionMarkupType? MarkupType { get; set; }
public short? FillA { get; set; }
public short? FillR { get; set; }
public short? FillG { get; set; }
public short? FillB { get; set; }
public int? BorderSize { get; set; }
public short? BorderA { get; set; }
public short? BorderR { get; set; }
public short? BorderG { get; set; }
public short? BorderB { get; set; }
public RedactionBorderStyle? BorderStyle { get; set; }
public string FontName { get; set; }
public short? FontA { get; set; }
public short? FontR { get; set; }
public short? FontG { get; set; }
public short? FontB { get; set; }
public int? FontSize { get; set; }
public RedactionFontStyle? FontStyle { get; set; }
public string Text { get; set; }
public int? ZOrder { get; set; }
public bool? DrawCrossLines { get; set; }
public RedactionMarkupSubType? MarkupSubType { get; set; }
public Redaction();
}
}