Files
BeWoPlaner/DakotaSender/DakotaSystemFile.cs

25 lines
685 B
C#
Raw Normal View History

2024-07-02 13:18:02 +02:00
using System;
using System.Collections.Generic;
using System.IO;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace DakotaSender
{
internal class DakotaSystemFile
{
2025-01-13 16:06:56 +01:00
public bool TestCase { get; set; }
2024-07-02 13:18:02 +02:00
public string Tenant { get; set; }
public long ProtokollOid { get; set; }
public long ApplicationUserOid { get; set; }
2024-07-02 13:18:02 +02:00
public string Datenannahmestelle { get; set; }
2024-07-03 16:44:58 +02:00
public string Transfername { get; set; }
public string TransfernameAuf => Transfername + ".auf";
2024-07-02 13:18:02 +02:00
2024-07-02 15:30:39 +02:00
public FileInfo SourceAuftragsdatei { get; set; }
public FileInfo SourceNutzdatendatei { get; set; }
2024-07-02 13:18:02 +02:00
}
}