// /** // * File: Target.cs // * Author: haraldwolff // * // * This file and it's content is copyrighted by the Author and / or copyright holder. // * Any use wihtout proper permission is illegal and may lead to legal actions. // * // * // **/ using System; using System.Net; namespace ln.skyscanner { public class Target { public IPAddress TargetIP { get; set; } public int CheckIntervall { get; set; } public Target(IPAddress targetIP) { TargetIP = targetIP; } } }