view pkg/models/search.go @ 1965:f845236e76bd

Translated using Weblate (Bulgarian) Currently translated at 2.7% (6 of 221 strings) Translation: Gemma/client Translate-URL: https://hosted.weblate.org/projects/gemma/client/bg/
author Fadi Abbud <fadi.abbud@intevation.de>
date Wed, 23 Jan 2019 09:38:17 +0000
parents a244b18cb916
children a6e5bb85f0a7
line wrap: on
line source

// This is Free Software under GNU Affero General Public License v >= 3.0
// without warranty, see README.md and license for details.
//
// SPDX-License-Identifier: AGPL-3.0-or-later
// License-Filename: LICENSES/AGPL-3.0.txt
//
// Copyright (C) 2018 by via donau
//   – Österreichische Wasserstraßen-Gesellschaft mbH
// Software engineering by Intevation GmbH
//
// Author(s):
//  * Sascha Wilde <sascha.wilde@intevation.de>

package models

type (
	SearchRequest struct {
		SearchString string `json:"string"`
	}
)