blob: 941546b56b293ab4102fc6d5d1319dddf91d6168 [file] [log] [blame]
// Copyright 2021 The Fuchsia Authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
library fidl.test.tablememberadd;
// placeholder types that are easy to print
alias Timezone = string:50;
alias TemperatureUnit = string:50;
// [START contents]
table Profile {
1: Timezone timezone;
2: TemperatureUnit temperature_unit;
3: bool dark_mode;
};
// [END contents]