using System; namespace FilterAPI.Handlers { public class Combine { public To PacketAttribute { get; private set; } public With MethodInfo { get; private set; } public Combine(To TransferPacketAttribute, With TransferMethodInfo) { PacketAttribute = TransferPacketAttribute; MethodInfo = TransferMethodInfo; } } }