Mike Phares 1a152fafe0 DEP08SIASM - v2.43.0 - Running but
with nuget_System.Text.Json v5.0.1
2022-06-28 11:57:49 -07:00

21 lines
513 B
C#

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;
}
}
}