19 lines
489 B
C#
19 lines
489 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
|
|
namespace StatsdClient
|
|
{
|
|
public sealed class CalendargramRetentionPeriod
|
|
{
|
|
public const string ONE_MINUTE = "1min";
|
|
public const string FIVE_MINUTE = "5min";
|
|
public const string HOUR = "h";
|
|
public const string DAY = "d";
|
|
public const string WEEK = "w";
|
|
public const string DAY_OF_WEEK = "dow";
|
|
public const string MONTH = "m";
|
|
}
|
|
}
|