LANCommander/LANCommander.Server.ImportExport/Legacy/Enums/NetworkProtocol.cs

13 lines
221 B
C#
Raw Permalink Normal View History

using System.ComponentModel.DataAnnotations;
namespace LANCommander.Server.ImportExport.Legacy.Enums;
internal enum NetworkProtocol
{
[Display(Name = "TCP/IP")]
TCPIP,
IPX,
Modem,
Serial,
Lobby
}