view pkg/models/search.go @ 5291:d62587503a39

Client: add bottlenecks filter for the soundingresults import * Get each bottleneck unique with its latest time.
author Fadi Abbud <fadi.abbud@intevation.de>
date Thu, 09 Jul 2020 16:33:25 +0200
parents a6e5bb85f0a7
children 1222b777f51f
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, 2020 by via donau
//   – Österreichische Wasserstraßen-Gesellschaft mbH
// Software engineering by Intevation GmbH
//
// Author(s):
//  * Sascha Wilde <sascha.wilde@intevation.de>

package models

import (
	"time"
)

type (
	SearchRequest struct {
		SearchString string `json:"string"`
		SearchTime *time.Time `json:"time"`
	}
)