Remotely/Shared/Models/ScriptSchedule.cs
2021-07-29 07:57:31 -07:00

53 lines
1.4 KiB
C#

using Remotely.Shared.Enums;
using Remotely.Shared.Utilities;
using System;
using System.Collections.Generic;
using System.ComponentModel.DataAnnotations;
using System.ComponentModel.DataAnnotations.Schema;
using System.Linq;
using System.Text;
using System.Text.Json.Serialization;
using System.Threading.Tasks;
namespace Remotely.Shared.Models
{
public class ScriptSchedule
{
public DateTimeOffset CreatedAt { get; set; }
[JsonIgnore]
public RemotelyUser Creator { get; set; }
public string CreatorId { get; set; }
[JsonIgnore]
public List<DeviceGroup> DeviceGroups { get; set; }
[JsonIgnore]
public List<Device> Devices { get; set; }
[DatabaseGenerated(DatabaseGeneratedOption.Identity)]
public int Id { get; set; }
public RepeatInterval Interval { get; set; }
public DateTimeOffset? LastRun { get; set; }
public string Name { get; set; }
public DateTimeOffset NextRun { get; set; }
public DateTimeOffset StartAt { get; set; }
[JsonIgnore]
public Organization Organization { get; set; }
public string OrganizationID { get; set; }
public bool RunOnNextConnect { get; set; } = true;
public Guid SavedScriptId { get; set; }
[JsonIgnore]
public List<ScriptRun> ScriptRuns { get; set; }
}
}