Version Error Message Tests passed mesfs.infineon.com Infineon.EAF.Runtime 2.49.3 pool name Kanban net8.0 v2_52_0-Tests editorconfig yml ec fix yml explicit contents dotnet_diagnostic Removed Open Insight API IFX Directory Removed Open Insight API IFX Directory from Save CA1862 and GetWeekOfYear for WritePDSF gitignore cellInstanceVersion.EdaConnection.PortNumber Removed Open Insight API IFX Directory from Save Added Climatec to Test.cs GetJobIdDirectory Remove and 5-Other-Small NETFRAMEWORK mesfs.infineon.com Infineon.EAF.Runtime 2.49.3 pool name Kanban
30 lines
949 B
C#
30 lines
949 B
C#
namespace Adaptation.Shared.Metrology;
|
|
|
|
public partial class WS
|
|
{
|
|
|
|
public class Attachment
|
|
{
|
|
|
|
public string SubGroupId { get; set; }
|
|
public long HeaderId { get; set; }
|
|
public string HeaderIdDirectory { get; set; }
|
|
public string UniqueId { get; set; }
|
|
public string DestinationFileName { get; set; }
|
|
public string SourceFileName { get; set; }
|
|
public string AttachmentId { get; set; }
|
|
|
|
public Attachment(string subGroupId, long headerId, string headerIdDirectory, string uniqueId, string destinationFileName, string sourceFileName)
|
|
{
|
|
SubGroupId = subGroupId;
|
|
HeaderId = headerId;
|
|
HeaderIdDirectory = headerIdDirectory;
|
|
UniqueId = uniqueId;
|
|
DestinationFileName = destinationFileName;
|
|
SourceFileName = sourceFileName;
|
|
AttachmentId = System.Guid.NewGuid().ToString();
|
|
}
|
|
|
|
}
|
|
|
|
} |