This commit is contained in:
2021-09-17 22:23:42 +00:00
parent c97b244a44
commit 6c4700029e
3 changed files with 93 additions and 1 deletions

View File

@@ -0,0 +1,13 @@
using System;
using AyaNova.Biz;
namespace AyaNova.Models
{
public class ScheduleItemAdjustParams
{
public AyaType Type { get; set; }
public long Id { get; set; }
public DateTime Start { get; set; }
public DateTime End { get; set; }
}
}