using System;
using System.Collections.Generic;
using Netch.Controllers;
namespace Netch.Models
{
public interface IServerUtil
{
///
/// Collection order basis
///
ushort Priority { get; }
///
/// Server.Type
///
string TypeName { get; }
///
/// Protocol Name
///
string FullName { get; }
string ShortName { get; }
///
/// Support URI
///
string[] UriScheme { get; }
public abstract Type ServerType { get; }
public void Edit(Server s);
public void Create();
string GetShareLink(Server s);
public abstract IServerController GetController();
public abstract IEnumerable ParseUri(string text);
bool CheckServer(Server s);
}
}