26 lines
602 B
Rust
26 lines
602 B
Rust
#[derive(Clone, Debug, PartialEq, Eq)]
|
|
pub enum WoodenFishDomainEvent {
|
|
DraftCompiled {
|
|
profile_id: String,
|
|
owner_user_id: String,
|
|
occurred_at_micros: i64,
|
|
},
|
|
WorkPublished {
|
|
profile_id: String,
|
|
owner_user_id: String,
|
|
occurred_at_micros: i64,
|
|
},
|
|
RunCheckpointed {
|
|
run_id: String,
|
|
owner_user_id: String,
|
|
total_tap_count: u32,
|
|
occurred_at_micros: i64,
|
|
},
|
|
RunFinished {
|
|
run_id: String,
|
|
owner_user_id: String,
|
|
total_tap_count: u32,
|
|
occurred_at_micros: i64,
|
|
},
|
|
}
|