mirror of
https://github.com/Cleanuparr/Cleanuparr.git
synced 2026-01-15 17:28:26 -05:00
15 lines
293 B
C#
15 lines
293 B
C#
namespace Executable.Models;
|
|
|
|
using Infrastructure.Models;
|
|
|
|
/// <summary>
|
|
/// Represents a request to schedule a job
|
|
/// </summary>
|
|
public class ScheduleRequest
|
|
{
|
|
/// <summary>
|
|
/// The schedule information for the job
|
|
/// </summary>
|
|
public JobSchedule Schedule { get; set; }
|
|
}
|