16 lines
250 B
C#
16 lines
250 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Text;
|
|
|
|
namespace PlantBox.Shared.Communication.Commands
|
|
{
|
|
public enum HistoricInterval
|
|
{
|
|
Monthly,
|
|
Weekly,
|
|
Daily,
|
|
Hourly,
|
|
Minutely
|
|
}
|
|
}
|