CaseInfo
using System;
using System.CodeDom.Compiler;
using System.ComponentModel;
using System.Diagnostics;
using System.Xml.Serialization;
namespace kCura.EDDS.WebAPI.CaseManagerBase
{
[Serializable]
[GeneratedCode("System.Xml", "4.0.30319.34234")]
[DebuggerStepThrough]
[DesignerCategory("code")]
[XmlType(Namespace = "http://www.kCura.com/EDDS/CaseManager")]
public class CaseInfo
{
private int artifactIDField;
private string nameField;
private int matterArtifactIDField;
private int statusCodeArtifactIDField;
private bool enableDataGridField;
private int rootFolderIDField;
private int rootArtifactIDField;
private string downloadHandlerURLField;
private bool asImportAllowedField;
private bool exportAllowedField;
private string documentPathField;
public int ArtifactID {
get {
return artifactIDField;
}
set {
artifactIDField = value;
}
}
public string Name {
get {
return nameField;
}
set {
nameField = value;
}
}
public int MatterArtifactID {
get {
return matterArtifactIDField;
}
set {
matterArtifactIDField = value;
}
}
public int StatusCodeArtifactID {
get {
return statusCodeArtifactIDField;
}
set {
statusCodeArtifactIDField = value;
}
}
public bool EnableDataGrid {
get {
return enableDataGridField;
}
set {
enableDataGridField = value;
}
}
public int RootFolderID {
get {
return rootFolderIDField;
}
set {
rootFolderIDField = value;
}
}
public int RootArtifactID {
get {
return rootArtifactIDField;
}
set {
rootArtifactIDField = value;
}
}
public string DownloadHandlerURL {
get {
return downloadHandlerURLField;
}
set {
downloadHandlerURLField = value;
}
}
public bool AsImportAllowed {
get {
return asImportAllowedField;
}
set {
asImportAllowedField = value;
}
}
public bool ExportAllowed {
get {
return exportAllowedField;
}
set {
exportAllowedField = value;
}
}
public string DocumentPath {
get {
return documentPathField;
}
set {
documentPathField = value;
}
}
}
}