mirror of
https://github.com/Cleanuparr/Cleanuparr.git
synced 2025-12-30 17:39:03 -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; }
|
|
}
|