Files
axum-async-graphql/src/domain/liegenschaft/entity/liegenschaft.rs

10 lines
214 B
Rust
Raw Normal View History

2026-06-01 22:14:34 +02:00
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>,
}