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