mirror of
https://github.com/scylladb/scylladb.git
synced 2026-04-20 00:20:47 +00:00
23 lines
331 B
C++
23 lines
331 B
C++
/*
|
|
* Copyright (C) 2025-present ScyllaDB
|
|
*/
|
|
|
|
/*
|
|
* SPDX-License-Identifier: LicenseRef-ScyllaDB-Source-Available-1.1
|
|
*/
|
|
|
|
#pragma once
|
|
|
|
#include <seastar/core/sstring.hh>
|
|
#include "sstables/generation_type.hh"
|
|
|
|
namespace sstables {
|
|
|
|
struct basic_info {
|
|
generation_type generation;
|
|
sstring origin;
|
|
int64_t size;
|
|
};
|
|
|
|
}
|