24 lines
577 B
C#
24 lines
577 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;
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
} |