1
0
mirror of synced 2025-02-15 02:02:38 +01:00
2023-10-08 15:49:55 +08:00

11 lines
308 B
C#

using System.ComponentModel.DataAnnotations;
namespace Domain.Config;
public class RankConfig
{
public const string RANK_SECTION = "Rank";
[Required, Range(1, double.MaxValue, ErrorMessage = "Value for {0} must be greater than 0!")]
public int RefreshIntervalHours { get; set; } = 24;
}