19 lines
424 B
C#
19 lines
424 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
using skyscraper5.Skyscraper.Net;
|
|
|
|
namespace skyscraper5.Dvb.DataBroadcasting.IntModel
|
|
{
|
|
public class Target
|
|
{
|
|
//0x0f Target Ip Slash Descriptor
|
|
public List<CidrSubnet> TargetIpSlashes { get; set; }
|
|
|
|
//Was Loop empty?
|
|
public bool AllReceivers { get; set; }
|
|
}
|
|
}
|