using InABox.Core; using System; using System.Collections.Generic; using System.Text; namespace Comal.Classes { public class ScheduledScript : Entity, IRemotable, IPersistent, ISchedulable, ILicense { [EditorSequence(1)] public string Name { get; set; } [ScriptEditor] [EditorSequence(3)] public string Script { get; set; } [NullEditor] public int ActiveSchedules { get; set; } } }