Skip to content

Commit

Permalink
#50
Browse files Browse the repository at this point in the history
* removed default values
  • Loading branch information
mrksoftware committed Mar 26, 2020
1 parent 4c7815d commit 92e47b4
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -16,11 +16,11 @@ public class GenericServiceConfigurationModel : IAmConfigurationModelWithResolut
public int WatcherConfigurationId { get; set; }
public int ApplicationId { get; set; }
public string ApplicationHostname => HostHelper.GetName();
public string RecipientAddresses { get; set; } = "[email protected];";
public string RecipientAddresses { get; set; }
public string FailureMessage { get; set; }
public int SendReminderEmailAfterRetryCount { get; set; } = 120;
public NotificationType NotificationType { get; set; } = NotificationType.Mail;
public string RestoredMessage { get; set; } = "Restored Message Test";
public string RestoredMessage { get; set; }
public int MaxRetryCount { get; set; } = 2;
}
}

0 comments on commit 92e47b4

Please sign in to comment.