1// Copyright 2022 The AccessKit Authors. All rights reserved.
2// Licensed under the Apache License, Version 2.0 (found in
3// the LICENSE-APACHE file) or the MIT license (found in
4// the LICENSE-MIT file), at your option.
5
6use serde::{Deserialize, Serialize};
7use zvariant::Type;
8
9#[derive(Deserialize, Serialize, Type)]
10pub struct Action {
11 pub localized_name: String,
12 pub description: String,
13 pub key_binding: String,
14}
15