16 lines
336 B
C#
16 lines
336 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace Budet_cho_bot.Models
|
|
{
|
|
public class CronRecord
|
|
{
|
|
public DateTimeOffset LastRun { set; get; }
|
|
public TimeSpan Period { set; get; }
|
|
public bool IsOneShot { set; get; }
|
|
}
|
|
}
|