Match TFS Changeset 303347

This commit is contained in:
2022-02-01 17:58:43 -07:00
parent b83a169bf1
commit 5183414f2b
83 changed files with 6471 additions and 13 deletions

View File

@ -0,0 +1,13 @@
namespace Adaptation.Shared.Properties
{
public interface IDescription
{
int Test { get; }
int Count { get; }
int Index { get; }
}
}

View File

@ -0,0 +1,20 @@
namespace Adaptation.Shared.Properties
{
public interface IFileRead
{
bool IsEvent { get; }
string NullData { get; }
string MesEntity { get; }
bool IsEAFHosted { get; }
string EventName { get; }
string EquipmentType { get; }
string ReportFullPath { get; }
string CellInstanceName { get; }
string ExceptionSubject { get; }
bool UseCyclicalForDescription { get; }
string CellInstanceConnectionName { get; }
string ParameterizedModelObjectDefinitionType { get; }
}
}

View File

@ -0,0 +1,25 @@
using System;
using System.Collections.Generic;
namespace Adaptation.Shared.Properties
{
public interface ILogistics
{
public object NullData { get; }
public string JobID { get; } //CellName
public long Sequence { get; } //Ticks
public DateTime DateTimeFromSequence { get; }
public double TotalSecondsSinceLastWriteTimeFromSequence { get; }
public string MesEntity { get; } //SPC
public string ReportFullPath { get; } //Extract file
public string ProcessJobID { get; set; } //Reactor (duplicate but I want it in the logistics)
public string MID { get; set; } //Lot & Pocket || Lot
public List<string> Tags { get; set; }
public List<string> Logistics1 { get; set; }
public List<Logistics2> Logistics2 { get; set; }
}
}

View File

@ -0,0 +1,17 @@
namespace Adaptation.Shared.Properties
{
public interface ILogistics2
{
public string MID { get; }
public string RunNumber { get; }
public string SatelliteGroup { get; }
public string PartNumber { get; }
public string PocketNumber { get; }
public string WaferLot { get; }
public string Recipe { get; }
}
}

View File

@ -0,0 +1,13 @@
using System.Collections.Generic;
namespace Adaptation.Shared.Properties
{
public interface IProcessData
{
List<object> Details { get; }
}
}

View File

@ -0,0 +1,20 @@
using System;
namespace Adaptation.Shared.Properties
{
public interface IScopeInfo
{
Enum Enum { get; }
string HTML { get; }
string Title { get; }
string FileName { get; }
int TestValue { get; }
string Header { get; }
string QueryFilter { get; }
string FileNameWithoutExtension { get; }
}
}