made-core 0.7.3

Domain core of MADE: entities, value objects, events, ports. No IO.
Documentation
1
2
3
4
5
6
7
use crate::value_objects::CritiqueFeedback;

/// Free-form feedback targeting a peer proposal.
#[derive(Debug, Clone, PartialEq, Eq)]
pub struct Critique {
    pub feedback: CritiqueFeedback,
}