State is now marked obsolete in favor of DbContext. Removed LogConfig property and its using directive to simplify the class. Minor formatting adjustments applied.
14 lines
382 B
C#
14 lines
382 B
C#
using DigitalData.Modules.Database;
|
|
using EnvelopeGenerator.Domain.Entities;
|
|
|
|
namespace EnvelopeGenerator.ServiceHost.Jobs;
|
|
|
|
[Obsolete("Use DbContext")]
|
|
public class State
|
|
{
|
|
public int UserId { get; set; }
|
|
public FormUser? User { get; set; }
|
|
public Config? Config { get; set; }
|
|
public DbConfig? DbConfig { get; set; }
|
|
public MSSQLServer? Database { get; set; }
|
|
} |