furkandeveloper/EasyProfiler

View on GitHub
src/EasyProfiler.CronJob/Common/CronConfiguration.cs

Summary

Maintainability
A
0 mins
Test Coverage
using EasyProfiler.CronJob.Abstractions;
using System;
using System.Collections.Generic;
using System.Text;

namespace EasyProfiler.CronJob.Common
{
    /// <summary>
    /// Cron Configuration Object
    /// </summary>
    /// <typeparam name="T"></typeparam>
    public class CronConfiguration<T> : ICronConfiguration<T>
    {
        /// <summary>
        /// Cron Expression. For Example : * * * * *
        /// </summary>
        public string CronExpression { get; set; }

        /// <summary>
        /// Represents any time zone in the world.
        /// </summary>
        public TimeZoneInfo TimeZoneInfo { get; set; }
    }
}