From 6749e1c5b85be3b915ffad776a793c50bc78c5c6 Mon Sep 17 00:00:00 2001 From: Niko Ehrenfeuchter <nikolaus.ehrenfeuchter@unibas.ch> Date: Wed, 14 Feb 2018 16:37:55 +0100 Subject: [PATCH] Update docstrings reflecting the default values. Refers to #29 --- ATxCommon/Serializables/ServiceConfig.cs | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/ATxCommon/Serializables/ServiceConfig.cs b/ATxCommon/Serializables/ServiceConfig.cs index 2fb48f8..d5bf069 100644 --- a/ATxCommon/Serializables/ServiceConfig.cs +++ b/ATxCommon/Serializables/ServiceConfig.cs @@ -146,17 +146,18 @@ namespace ATxCommon.Serializables public bool SendAdminNotification { get; set; } /// <summary> - /// Minimum amount of time in minutes between two mail notifications to the admin address. + /// Minimum time in minutes between two notifications to the admin, default: 60. /// </summary> public int AdminNotificationDelta { get; set; } /// <summary> - /// Minimum time in minutes between two mails about expired folders in the grace location. + /// Minimum time in minutes between two mails about expired folders in the grace location, + /// default: 720 (12h). /// </summary> public int GraceNotificationDelta { get; set; } /// <summary> - /// Minimum amount of time in minutes between two low-storage-space notifications. + /// Minimum time in minutes between two low-space notifications, default: 720 (12h). /// </summary> public int StorageNotificationDelta { get; set; } -- GitLab