Files
Kevin Krüger bb6c229875 -> IPScanner added
-> PortScanner added
2022-01-17 15:17:34 +01:00

16 lines
187 B
C#

using System;
using System.Collections.Generic;
using System.Text;
namespace IPScanner
{
public enum ScanStatus
{
Initializing,
Scanning,
NotFound,
Complete,
Partial
}
}