Files
mixtape/zero.Web/DevServer/ZeroDevOptions.cs
T

17 lines
315 B
C#
Raw Normal View History

2020-11-01 23:23:36 +01:00
using System;
using System.Collections.Generic;
using System.Linq;
using System.Threading.Tasks;
namespace Zero.Web.DevServer
{
public class ZeroDevOptions
{
public int Port { get; set; } = 3399;
2020-11-03 00:49:41 +01:00
public bool ForwardLog { get; set; } = false;
2020-11-01 23:23:36 +01:00
public string WorkingDirectory { get; set; }
}
}