X-Git-Url: https://gitweb.stoutner.com/?p=PrivacyCell.git;a=blobdiff_plain;f=app%2Fsrc%2Fmain%2Fjava%2Fcom%2Fstoutner%2Fprivacycell%2Fdataclasses%2FProtocol.kt;fp=app%2Fsrc%2Fmain%2Fjava%2Fcom%2Fstoutner%2Fprivacycell%2Fdataclasses%2FProtocol.kt;h=711847313561f621684a02191df098f057fef728;hp=0000000000000000000000000000000000000000;hb=b11b84b24c660fac3a69f2dbe4bd615d73811219;hpb=7467e75bda34246c91c4e4989b1c32a81314d53c diff --git a/app/src/main/java/com/stoutner/privacycell/dataclasses/Protocol.kt b/app/src/main/java/com/stoutner/privacycell/dataclasses/Protocol.kt new file mode 100644 index 0000000..7118473 --- /dev/null +++ b/app/src/main/java/com/stoutner/privacycell/dataclasses/Protocol.kt @@ -0,0 +1,23 @@ +/* + * Copyright © 2022 Soren Stoutner . + * + * This file is part of Privacy Cell . + * + * Privacy Cell is free software: you can redistribute it and/or modify + * it under the terms of the GNU General Public License as published by + * the Free Software Foundation, either version 3 of the License, or + * (at your option) any later version. + * + * Privacy Cell is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + * GNU General Public License for more details. + * + * You should have received a copy of the GNU General Public License + * along with Privacy Cell. If not, see . + */ + +package com.stoutner.privacycell.dataclasses + +// Define the Protocol data class. +class Protocol(val protocolName: String, val isHeader: Boolean, val isAdditionalNetworkInfo: Boolean) \ No newline at end of file