aboutsummaryrefslogtreecommitdiff
path: root/src/re_server/net/structure.rs
blob: b5d74a646a3290673466c69f47060007d55eae6a (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
pub struct NetworkProperty {
  pub prop_id: i32,
  pub value:   String,
}
impl NetworkProperty {
  pub fn new() -> Self { NetworkProperty::default() }
}
impl Default for NetworkProperty {
  fn default() -> Self {
    NetworkProperty {
      prop_id: 0,
      value:   "".to_string(),
    }
  }
}