kCura.EDDS.WebAPI.FileManagerBase.File
namespace kCura.EDDS.WebAPI.FileManagerBase
{
public class File
{
public int FileID { get; set; }
public int ObjectArtifactID { get; set; }
public string Guid { get; set; }
public int Order { get; set; }
public int Type { get; set; }
public string Filename { get; set; }
public long? Size { get; set; }
public string Location { get; set; }
public int DocumentArtifactID { get; set; }
public int Rotation { get; set; }
public Redaction[] Redactions { get; set; }
public string Identifier { get; set; }
public int Status { get; set; }
public bool InRepository { get; set; }
public string Message { get; set; }
public bool ClearExisting { get; set; }
public File();
}
}