- Core-Bibliotheken und `UserManager.Infrastructure` in der Application-Schicht auf Version 2.0.0.0 erhöht. - DbSet-Eigenschaften aus dem DbContext injiziert.
13 lines
302 B
C#
13 lines
302 B
C#
using DigitalData.Core.Abstractions;
|
|
|
|
namespace EnvelopeGenerator.Application.DTOs
|
|
{
|
|
public record UserReceiverDto(
|
|
int Id,
|
|
int UserId,
|
|
int ReceiverId,
|
|
string Name,
|
|
string CompanyName,
|
|
string JobTitle,
|
|
DateTime AddedWhen) : IUnique<int>;
|
|
} |