a05c3aeb85
Added signalR auth
15 lines
351 B
C#
15 lines
351 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace Step.Model.ConfigModels
|
|
{
|
|
public class ServerConfigModel
|
|
{
|
|
public string Language { get; set; }
|
|
public int ServerPort { get; set; }
|
|
public bool EnableDirectoryBrowsing { get; set; }
|
|
}
|
|
} |