- Core-Bibliotheken und UserManager.Infrastructure in den API-Schichten auf Version 2.0.0.0 erhöht.
20 lines
714 B
C#
20 lines
714 B
C#
using DigitalData.Core.Abstractions;
|
|
using System.Text.Json.Serialization;
|
|
|
|
namespace EnvelopeGenerator.Application.DTOs
|
|
{
|
|
public record ConfigDto(
|
|
string DocumentPath,
|
|
int SendingProfile,
|
|
string SignatureHost,
|
|
string ExternalProgramName,
|
|
string ExportPath,
|
|
string DocumentPathDmz,
|
|
string ExportPathDmz,
|
|
string DocumentPathMoveAftsend) : IUnique<int>
|
|
{
|
|
[JsonIgnore]
|
|
[Obsolete("Configuration does not have an ID; it represents a single table in the database.")]
|
|
public int Id => throw new InvalidOperationException("This configuration does not support an ID as it represents a single row in the database.");
|
|
};
|
|
} |