36 lines
853 B
C#
36 lines
853 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace MainShell
|
|
{
|
|
public class SubstrateNameChangedEventArgs : EventArgs
|
|
{
|
|
public string OldName { get; set; }
|
|
public string NewName { get; set; }
|
|
|
|
}
|
|
public class WaferNameChangedEventArgs : EventArgs
|
|
{
|
|
public string OldName { get; set; }
|
|
public string NewName { get; set; }
|
|
|
|
}
|
|
public class ProcessNameChangedEventArgs : EventArgs
|
|
{
|
|
public string OldName { get; set; }
|
|
public string NewName { get; set; }
|
|
|
|
}
|
|
public class SubstrateDeletedEventArgs : EventArgs
|
|
{
|
|
public string DeletedName { get; set; }
|
|
}
|
|
public class WaferDeletedEventArgs : EventArgs
|
|
{
|
|
public string DeletedName { get; set; }
|
|
}
|
|
}
|