21 lines
606 B
C#
21 lines
606 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace Client.Config.SubModels
|
|
{
|
|
public class Connection
|
|
{
|
|
public string ServerUrl { get; set; }
|
|
public ushort ServerPort { get; set; }
|
|
public ushort Id { get; set; }
|
|
public string StartingUrl { get; set; }
|
|
public string ReadConfigUrl { get; set; }
|
|
public Boolean DeleteCahceFolderOnStartup { get; set; }
|
|
public Boolean BypassReadConfiguration { get; set; }
|
|
public string ErrorPage { get; set; }
|
|
}
|
|
}
|