10 lines
214 B
Rust
10 lines
214 B
Rust
|
|
use crate::scalar::{Id, Time};
|
||
|
|
|
||
|
|
pub struct Liegenschaft {
|
||
|
|
pub id_liegenschaft: Id,
|
||
|
|
pub id: String,
|
||
|
|
pub liegenschaftname: String,
|
||
|
|
pub erstellt_am: Option<Time>,
|
||
|
|
pub geaendert_am: Option<Time>,
|
||
|
|
}
|