31 lines
543 B
C#
Raw Permalink Normal View History

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace JiShe.CollectBus.Common.Enums
{
/// <summary>
/// 监控重试类型
/// </summary>
public enum RetryReadingEnum
{
/// <summary>
/// 1分钟
/// </summary>
OneMinute,
/// <summary>
/// 5分钟
/// </summary>
FiveMinute,
/// <summary>
/// 15分钟
/// </summary>
FifteenMinute,
}
}