11 lines
211 B
Rust
11 lines
211 B
Rust
use ruma_common::events::StateEventContent;
|
|
use ruma_macros::Event;
|
|
|
|
/// State event.
|
|
#[derive(Clone, Debug, Event)]
|
|
pub struct OriginalStateEvent<C: StateEventContent> {
|
|
pub not_content: C,
|
|
}
|
|
|
|
fn main() {}
|