Exemple #1
0
 /// <summary>
 /// Initializes a new instance of the InputAppendLog class.
 /// </summary>
 public InputAppendLog(string text = default(string), System.DateTime?createdDate = default(System.DateTime?), WorkspaceItemLogProperties property = default(WorkspaceItemLogProperties))
 {
     Text        = text;
     CreatedDate = createdDate;
     Property    = property;
     CustomInit();
 }
Exemple #2
0
 /// <summary>
 /// Initializes a new instance of the WorkspaceItemLog class.
 /// </summary>
 public WorkspaceItemLog(System.Guid?id = default(System.Guid?), string text = default(string), string createdBy = default(string), System.DateTime?createdDate = default(System.DateTime?), WorkspaceItemLogProperties properties = default(WorkspaceItemLogProperties))
 {
     Id          = id;
     Text        = text;
     CreatedBy   = createdBy;
     CreatedDate = createdDate;
     Properties  = properties;
     CustomInit();
 }