blob: 390412e4fc7576aba5d52ef7e4589ae555c1c44c (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
|
// Copyright (C) 2021-2021 The Whirlsplash Collective
// SPDX-License-Identifier: GPL-3.0-only
#[derive(Clone, Default)]
pub struct NetworkProperty {
pub prop_id: i32,
pub value: String,
}
impl NetworkProperty {
pub fn _new() -> Self { Self::default() }
}
|