From 04bbec14f5277d015ca56117e2306a4bd43f1b31 Mon Sep 17 00:00:00 2001 From: Mirko Da Corte Date: Mon, 7 Oct 2024 02:22:53 +0200 Subject: [PATCH] Add SwarmHttpConsts class to BeeNet.Core models --- src/BeeNet.Core/Models/SwarmHttpConsts.cs | 22 ++++++++++++++++++++++ 1 file changed, 22 insertions(+) create mode 100644 src/BeeNet.Core/Models/SwarmHttpConsts.cs diff --git a/src/BeeNet.Core/Models/SwarmHttpConsts.cs b/src/BeeNet.Core/Models/SwarmHttpConsts.cs new file mode 100644 index 0000000..2bda0bd --- /dev/null +++ b/src/BeeNet.Core/Models/SwarmHttpConsts.cs @@ -0,0 +1,22 @@ +// Copyright 2021-present Etherna SA +// This file is part of Bee.Net. +// +// Bee.Net is free software: you can redistribute it and/or modify it under the terms of the +// GNU Lesser General Public License as published by the Free Software Foundation, +// either version 3 of the License, or (at your option) any later version. +// +// Bee.Net 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 Lesser General Public License for more details. +// +// You should have received a copy of the GNU Lesser General Public License along with Bee.Net. +// If not, see . + +namespace Etherna.BeeNet.Models +{ + public static class SwarmHttpConsts + { + public const string SwarmPostageBatchId = "swarm-postage-batch-id"; + public const string SwarmTag = "swarm-tag"; + } +} \ No newline at end of file