Dateispeicherorte angeordnet

This commit is contained in:
Developer 02
2024-05-16 17:40:07 +02:00
parent 6b931c21ff
commit 6ea932a330
13 changed files with 21 additions and 16 deletions

View File

@@ -0,0 +1,25 @@
namespace DigitalData.EmailProfilerGateway.Application.DTOs
{
public record EmailOutDto(
int Guid,
int ReminderTypeId,
int SendingProfile,
int ReferenceId,
string ReferenceString,
int? EntityId,
int WfId,
string WfReference,
string EmailAddress,
string EmailSubj,
string EmailBody,
string EmailAttmt1,
DateTime? EmailSent,
string Comment,
string AddedWho,
DateTime? AddedWhen,
string ChangedWho,
DateTime? ChangedWhen,
DateTime? ErrorTimestamp,
string ErrorMsg
);
}

View File

@@ -0,0 +1,13 @@
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<TargetFramework>net7.0</TargetFramework>
<ImplicitUsings>enable</ImplicitUsings>
<Nullable>enable</Nullable>
</PropertyGroup>
<ItemGroup>
<Folder Include="Services\" />
</ItemGroup>
</Project>