feat(EnvelopeClaimTypes): „envelope ID“ als Auth-Claim hinzugefügt.
This commit is contained in:
@@ -3,13 +3,16 @@
|
||||
namespace EnvelopeGenerator.Application.DTOs.EnvelopeReceiverReadOnly
|
||||
{
|
||||
public record EnvelopeReceiverReadOnlyCreateDto(
|
||||
long EnvelopeId,
|
||||
string ReceiverMail,
|
||||
DateTime DateValid)
|
||||
{
|
||||
[JsonIgnore]
|
||||
public long? EnvelopeId { get; set; } = null;
|
||||
|
||||
[JsonIgnore]
|
||||
public string? AddedWho { get; set; }
|
||||
|
||||
[JsonIgnore]
|
||||
public DateTime AddedWhen { get; } = DateTime.Now;
|
||||
};
|
||||
}
|
||||
Reference in New Issue
Block a user