1
0

add basic create and list reminder api

This commit is contained in:
2023-08-03 13:57:12 +07:00
parent e5693edc49
commit 4d16a67a2b
8 changed files with 190 additions and 246 deletions

View File

@@ -0,0 +1,15 @@
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; }
}
}