summaryrefslogtreecommitdiffstats
path: root/src/org/uic/ticket/api/asn/omv1/SequenceOfTariffType.java
blob: 0d5c15ebdde0d0a2aaf5bffe74d101effa07dbc1 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
package org.uic.ticket.api.asn.omv1;

import java.util.Collection;

import net.gcdc.asn1.datatypes.Asn1SequenceOf;

public class SequenceOfTariffType extends Asn1SequenceOf<TariffType> {
    public SequenceOfTariffType() { super(); }
    public SequenceOfTariffType(Collection<TariffType> coll) { super(coll); }
}