MET08ANLYSDIFAAST230 - v4.43.0 - Use EDA multiple

This commit is contained in:
2022-05-16 15:34:24 -07:00
parent 9c042d3871
commit 2685dd79d5
178 changed files with 13498 additions and 11875 deletions

View File

@ -0,0 +1,21 @@
namespace Adaptation.Shared.Metrology;
public partial class WS
{
public class Attachment
{
public string UniqueId { get; set; }
public string DestinationFileName { get; set; }
public string SourceFileName { get; set; }
public Attachment(string uniqueId, string destinationFileName, string sourceFileName)
{
UniqueId = uniqueId;
DestinationFileName = destinationFileName;
SourceFileName = sourceFileName;
}
}
}