blob: 8942cb2843232e2066b38dbc2f20f789e8d365b9 (
plain)
pre { line-height: 125%; }
td.linenos .normal { color: inherit; background-color: transparent; padding-left: 5px; padding-right: 5px; }
span.linenos { color: inherit; background-color: transparent; padding-left: 5px; padding-right: 5px; }
td.linenos .special { color: #000000; background-color: #ffffc0; padding-left: 5px; padding-right: 5px; }
span.linenos.special { color: #000000; background-color: #ffffc0; padding-left: 5px; padding-right: 5px; }
.highlight .hll { background-color: #ffffcc }
.highlight .c { color: #888888 } /* Comment */
.highlight .err { color: #a61717; background-color: #e3d2d2 } /* Error */
.highlight .k { color: #0088using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using Tango.Integration.Operation;
using Tango.SharedUI;
namespace Tango.PPC.Jobs.Dialogs
{
public class SpoolChangeViewVM : DialogViewVM
{
public SpoolChangeRequiredEventArgs SpoolChangeRequiredEventArgs { get; set; }
public SpoolChangeViewVM(SpoolChangeRequiredEventArgs spoolChangeRequiredEventArgs)
{
SpoolChangeRequiredEventArgs = spoolChangeRequiredEventArgs;
}
}
}
|