16 lines
350 B
C#
16 lines
350 B
C#
using System.Text.Json.Serialization;
|
|
|
|
namespace MycroForge.Core;
|
|
|
|
public partial class ProjectConfig
|
|
{
|
|
public partial class DbConfig
|
|
{
|
|
public int DbhPort { get; set; }
|
|
|
|
public int DbuPort { get; set; }
|
|
|
|
[JsonIgnore]
|
|
public DbuPlatformOptions DbuPlatform { get; set; }
|
|
}
|
|
} |