mirror of https://github.com/LemmyNet/lemmy.git
15 lines
389 B
Rust
15 lines
389 B
Rust
|
use crate::newtypes::LanguageId;
|
||
|
use serde::{Deserialize, Serialize};
|
||
|
|
||
|
#[cfg(feature = "full")]
|
||
|
use crate::schema::language;
|
||
|
|
||
|
#[derive(Clone, PartialEq, Debug, Serialize, Deserialize)]
|
||
|
#[cfg_attr(feature = "full", derive(Queryable, Identifiable))]
|
||
|
#[cfg_attr(feature = "full", table_name = "language")]
|
||
|
pub struct Language {
|
||
|
pub id: LanguageId,
|
||
|
pub code: String,
|
||
|
pub name: String,
|
||
|
}
|