17 lines
529 B
Rust
17 lines
529 B
Rust
|
|
use serde::{Deserialize, Serialize};
|
||
|
|
|
||
|
|
#[derive(Debug, Clone, Serialize, Deserialize)]
|
||
|
|
pub struct Prompt {
|
||
|
|
pub id: String,
|
||
|
|
pub name: String,
|
||
|
|
pub content: String,
|
||
|
|
#[serde(skip_serializing_if = "Option::is_none")]
|
||
|
|
pub description: Option<String>,
|
||
|
|
#[serde(default)]
|
||
|
|
pub enabled: bool,
|
||
|
|
#[serde(rename = "createdAt", skip_serializing_if = "Option::is_none")]
|
||
|
|
pub created_at: Option<i64>,
|
||
|
|
#[serde(rename = "updatedAt", skip_serializing_if = "Option::is_none")]
|
||
|
|
pub updated_at: Option<i64>,
|
||
|
|
}
|