- Core-Bibliotheken und `UserManager.Infrastructure` in der Application-Schicht auf Version 2.0.0.0 erhöht. - DbSet-Eigenschaften aus dem DbContext injiziert.
12 lines
281 B
C#
12 lines
281 B
C#
using DigitalData.Core.Abstractions;
|
|
|
|
namespace EnvelopeGenerator.Application.DTOs
|
|
{
|
|
public record EnvelopeDocumentDto
|
|
(
|
|
int Id,
|
|
int EnvelopeId,
|
|
DateTime AddedWhen,
|
|
IEnumerable<DocumentReceiverElementDto>? Elements
|
|
) : IUnique<int>;
|
|
} |