mirror of
https://github.com/LemmyNet/lemmy.git
synced 2024-11-15 17:03:59 +00:00
24 lines
756 B
Rust
24 lines
756 B
Rust
|
use crate::newtypes::{LanguageId, LocalUserId, LocalUserLanguageId};
|
||
|
use serde::{Deserialize, Serialize};
|
||
|
|
||
|
#[cfg(feature = "full")]
|
||
|
use crate::schema::local_user_language;
|
||
|
|
||
|
#[derive(Clone, PartialEq, Debug, Serialize, Deserialize)]
|
||
|
#[cfg_attr(feature = "full", derive(Queryable, Identifiable))]
|
||
|
#[cfg_attr(feature = "full", table_name = "local_user_language")]
|
||
|
pub struct LocalUserLanguage {
|
||
|
#[serde(skip)]
|
||
|
pub id: LocalUserLanguageId,
|
||
|
pub local_user_id: LocalUserId,
|
||
|
pub language_id: LanguageId,
|
||
|
}
|
||
|
|
||
|
#[derive(Clone)]
|
||
|
#[cfg_attr(feature = "full", derive(Insertable, AsChangeset))]
|
||
|
#[cfg_attr(feature = "full", table_name = "local_user_language")]
|
||
|
pub struct LocalUserLanguageForm {
|
||
|
pub local_user_id: LocalUserId,
|
||
|
pub language_id: LanguageId,
|
||
|
}
|