fix(dimentorin): resolve mentor profile id to user id before booking session

This commit is contained in:
asepharyana
2026-08-04 18:34:13 +07:00
parent 67d3f2fced
commit 7d1078f52a
24 changed files with 437 additions and 1 deletions
@@ -0,0 +1,17 @@
use chrono::{DateTime, Utc};
use uuid::Uuid;
#[derive(Clone, Debug)]
pub struct ArticleEntity {
pub id: Uuid,
pub title: String,
pub slug: String,
pub category: String,
pub excerpt: String,
pub content: String,
pub cover_url: Option<String>,
pub author_name: Option<String>,
pub is_published: bool,
pub created_at: DateTime<Utc>,
pub updated_at: DateTime<Utc>,
}