Beispiel #1
0
 /// <summary>
 /// Ctor for the alert action definition.
 /// </summary>
 public ContosoAlertActionDefinition(ContosoAlertActionType type, string description, string parameter)
 {
     Type        = type;
     Description = description;
     Parameter   = parameter;
 }
Beispiel #2
0
 public ContosoAlertActionInfo(long id, ContosoAlertActionType type, string description)
 {
     Id          = id;
     Type        = type;
     Description = description;
 }