14 lines
345 B
Rust
14 lines
345 B
Rust
use chrono::{DateTime, Utc};
|
|
use serde::{Deserialize, Serialize};
|
|
use sqlx::FromRow;
|
|
use uuid::Uuid;
|
|
|
|
#[derive(Debug, Clone, PartialEq, Serialize, Deserialize, FromRow)]
|
|
pub struct PullRequestReviewReactionModel {
|
|
pub id: Uuid,
|
|
pub review_comment: Uuid,
|
|
pub user: Uuid,
|
|
pub reaction: String,
|
|
pub created_at: DateTime<Utc>,
|
|
}
|