LANCommander/LANCommander/Data/Enums/NetworkProtocol.cs
2023-01-08 21:43:01 -06:00

13 lines
224 B
C#

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