made-core 0.7.3

Domain core of MADE: entities, value objects, events, ports. No IO.
Documentation
1
2
3
4
5
6
7
8
9
10
11
use time::OffsetDateTime;

use crate::value_objects::{CeremonyInterventionId, RoleId};

/// Judge an intervention answered enough; only its requester may.
#[derive(Debug, Clone, PartialEq, Eq)]
pub struct CloseIntervention {
    pub intervention_id: CeremonyInterventionId,
    pub role_id: RoleId,
    pub now: OffsetDateTime,
}