Updated namespaces to align with the new DigitalData.Core structure, replacing `DigitalData.Core.Abstractions` with `DigitalData.Core.Application.Interfaces` and `DigitalData.Core.Client.Interface`. Removed the `IUnique<int>` interface from several DTOs, simplifying their design and altering the handling of entity identification. Updated project files to reflect new dependency versions for improved compatibility and features. Cleaned up using directives to remove obsolete references, enhancing code maintainability.
25 lines
809 B
C#
25 lines
809 B
C#
using System.ComponentModel.DataAnnotations;
|
|
using System.ComponentModel.DataAnnotations.Schema;
|
|
|
|
namespace EnvelopeGenerator.Domain.Entities
|
|
{
|
|
[Table("TBSIG_CONFIG", Schema = "dbo")]
|
|
public class Config
|
|
{
|
|
[Column("DOCUMENT_PATH", TypeName = "nvarchar(256)")]
|
|
public string DocumentPath { get; set; }
|
|
|
|
[Column("SENDING_PROFILE", TypeName = "int")]
|
|
[Required]
|
|
public int SendingProfile { get; set; }
|
|
|
|
[Column("SIGNATURE_HOST", TypeName = "nvarchar(128)")]
|
|
public string SignatureHost { get; set; }
|
|
|
|
[Column("EXTERNAL_PROGRAM_NAME", TypeName = "nvarchar(30)")]
|
|
public string ExternalProgramName { get; set; }
|
|
|
|
[Column("EXPORT_PATH", TypeName = "nvarchar(256)")]
|
|
public string ExportPath { get; set; }
|
|
}
|
|
} |