recipes/back_core/src/app_core/shared/domain/lang.rs

12 lines
159 B
Rust
Raw Normal View History

2023-03-16 17:45:04 +03:00
#[derive(Debug, Copy, Clone, PartialEq, Eq)]
pub enum Lang {
Rus,
Eng,
}
impl Default for Lang {
fn default() -> Self {
Lang::Rus
}
}