Skip to content

Commit

Permalink
missing comments
Browse files Browse the repository at this point in the history
  • Loading branch information
oskogstad committed Dec 22, 2024
1 parent fbc98c3 commit 407a836
Showing 1 changed file with 10 additions and 10 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -10,12 +10,12 @@ public DialogActivityType(Values id) : base(id) { }
public enum Values
{
/// <summary>
/// Refers to a dialog that has been created.
/// Indicates that a dialog has been created.
/// </summary>
DialogCreated = 1,

/// <summary>
/// Refers to a dialog that has been closed.
/// Indicates that a dialog has been closed.
/// </summary>
DialogClosed = 2,

Expand All @@ -25,7 +25,7 @@ public enum Values
Information = 3,

/// <summary>
/// Refers to a transmission that has been opened.
/// Indicates that a transmission has been opened.
/// </summary>
TransmissionOpened = 4,

Expand All @@ -40,37 +40,37 @@ public enum Values
SignatureProvided = 6,

/// <summary>
/// Refers to a dialog that has been opened.
/// Indicates that a dialog has been opened.
/// </summary>
DialogOpened = 7,

/// <summary>
/// Refers to a dialog that has been deleted.
/// Indicates that a dialog has been deleted.
/// </summary>
DialogDeleted = 8,

/// <summary>
/// Refers to a dialog that has been restored.
/// Indicates that a dialog has been restored.
/// </summary>
DialogRestored = 9,

/// <summary>
///
/// Indicates that a dialog has been sent to signing.
/// </summary>
SentToSigning = 10,

/// <summary>
///
/// Indicates that a dialog has been sent to form fill.
/// </summary>
SentToFormFill = 11,

/// <summary>
///
/// Indicates that a dialog has been sent to send in.
/// </summary>
SentToSendIn = 12,

/// <summary>
///
/// Indicates that a dialog has been sent to payment.
/// </summary>
SentToPayment = 13,
}
Expand Down

0 comments on commit 407a836

Please sign in to comment.