namespace Neo.Afx.Services
{
#region PollFrequencyEnum
///
/// Defines how frequently the service executes.
///
public enum PollFrequencyEnum : short
{
///
/// The service executes every x number of minutes.
///
Minutes,
///
/// The service executes every hour at the specified time.
///
Hourly,
///
/// The service executes every day at the specified time.
///
Daily,
///
/// The service executes every week at the specified day of week and time.
///
Weekly,
///
/// The service executes every month at the specified day and time.
///
Monthly,
///
/// The service executes every x number of seconds
///
Seconds
}
#endregion
#region ServiceSettingsSource
///
/// Defines where the settings are kept for the service.
///
public enum ServiceSettingsSource
{
///
/// The database
///
Database,
///
/// The file system
///
FileSystem
}
#endregion
}