LANCommander/LANCommander.Server.ImportExport/Legacy/Enums/NetworkProtocol.cs
2025-12-04 23:44:42 -06:00

13 lines
No EOL
221 B
C#

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