1
0
This repository has been archived on 2023-08-03. You can view files and clone it, but cannot push or open issues or pull requests.
budet-cho-bot/Budet-cho-bot/Models/CronRecord.cs

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; }
}
}