- Join mit Receiver und Read - DI-Konfiguration hinzufügen - Auslöser hinzufügen (TBSIG_ENVELOPE_RECEIVER_READ_ONLY_UPD)
15 lines
390 B
C#
15 lines
390 B
C#
using System.Text.Json.Serialization;
|
|
|
|
namespace EnvelopeGenerator.Application.DTOs.EnvelopeReceiverReadOnly
|
|
{
|
|
public record EnvelopeReceiverReadOnlyCreateDto(
|
|
long EnvelopeId,
|
|
string ReceiverMail,
|
|
DateTime DateValid)
|
|
{
|
|
[JsonIgnore]
|
|
public string? AddedWho { get; set; }
|
|
|
|
public DateTime AddedWhen { get; } = DateTime.Now;
|
|
};
|
|
} |