15 lines
335 B
C#
15 lines
335 B
C#
|
|
using System;
|
|||
|
|
using System.Collections.Generic;
|
|||
|
|
using System.Linq;
|
|||
|
|
using System.Text;
|
|||
|
|
using System.Threading.Tasks;
|
|||
|
|
|
|||
|
|
namespace MainShell.EventArgsFolder
|
|||
|
|
{
|
|||
|
|
public class SubstrateResultEventArgs
|
|||
|
|
{
|
|||
|
|
public double Angle { get; set; }
|
|||
|
|
// 如果有其他最终结果(如 Offset),也可以放在这里
|
|||
|
|
}
|
|||
|
|
}
|