use chrono::{DateTime, Utc};
use serde::Serialize;
use sqlx::FromRow;
use uuid::Uuid;
#[derive(Debug, Clone, Serialize, FromRow)]
pub struct Memo {
pub id: Uuid,
pub title: String,
pub memo_type: String,
pub body_markdown: String,
pub status: String,
pub created_at: DateTime<Utc>,
}