- Core-Bibliotheken und `UserManager.Infrastructure` in der Application-Schicht auf Version 2.0.0.0 erhöht. - DbSet-Eigenschaften aus dem DbContext injiziert.
14 lines
356 B
C#
14 lines
356 B
C#
using DigitalData.Core.Abstractions;
|
|
|
|
namespace EnvelopeGenerator.Application.DTOs
|
|
{
|
|
public record EnvelopeCertificateDto(
|
|
int Id,
|
|
int EnvelopeId,
|
|
string EnvelopeUuid,
|
|
string EnvelopeSubject,
|
|
int CreatorId,
|
|
string CreatorName,
|
|
string CreatorEmail,
|
|
int EnvelopeStatus) : IUnique<int>;
|
|
} |