21 lines
574 B
Rust
21 lines
574 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 UserAppNotifyModel {
|
|
pub id: Uuid,
|
|
pub user: Uuid,
|
|
pub title: String,
|
|
pub body: String,
|
|
pub notify_type: String,
|
|
pub target_type: Option<String>,
|
|
pub target_id: Option<Uuid>,
|
|
pub metadata: Option<String>,
|
|
pub read_at: Option<DateTime<Utc>>,
|
|
pub archived_at: Option<DateTime<Utc>>,
|
|
pub created_at: DateTime<Utc>,
|
|
pub updated_at: DateTime<Utc>,
|
|
}
|