mirror of
https://github.com/Cleanuparr/Cleanuparr.git
synced 2026-01-17 10:17:55 -05:00
15 lines
308 B
C#
15 lines
308 B
C#
using Cleanuparr.Infrastructure.Models;
|
|
|
|
namespace Cleanuparr.Api.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; }
|
|
}
|