DEP08SIHTRPLC - v2.43.0 - Ready to Test

This commit is contained in:
2022-07-29 14:57:38 -07:00
parent c567bb44e0
commit 91b162a7eb
108 changed files with 12877 additions and 0 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;
}
}
}