27 lines
680 B
C#
27 lines
680 B
C#
using IronIntel.Contractor.Maintenance;
|
|
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace IronIntel.Contractor.Site.Maintenance
|
|
{
|
|
public class ScheduleSaveArgs
|
|
{
|
|
public string IID { get; set; }
|
|
public string Name { get; set; }
|
|
public string ScheduleUom { get; set; }
|
|
public string Type { get; set; }
|
|
public string Notes { get; set; }
|
|
|
|
public PmIntervalItem[] Intervals { get; set; }
|
|
}
|
|
|
|
public class ScheduleMachineArgs
|
|
{
|
|
public string IID { get; set; }
|
|
public MaintenanceMachineInfo[] Machines { get; set; }
|
|
}
|
|
}
|