Dateispeicherorte angeordnet
This commit is contained in:
@@ -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
|
||||
);
|
||||
}
|
||||
@@ -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>
|
||||
Reference in New Issue
Block a user