mirror of
https://github.com/stalwartlabs/mail-server.git
synced 2025-12-12 06:16:59 +08:00
16 lines
326 B
Rust
16 lines
326 B
Rust
/*
|
|
* SPDX-FileCopyrightText: 2020 Stalwart Labs Ltd <hello@stalw.art>
|
|
*
|
|
* SPDX-License-Identifier: AGPL-3.0-only OR LicenseRef-SEL
|
|
*/
|
|
|
|
|
|
|
|
use super::list::Attribute;
|
|
|
|
#[derive(Debug, Clone, PartialEq, Eq)]
|
|
pub struct Arguments {
|
|
pub tag: String,
|
|
pub mailbox_name: String,
|
|
pub mailbox_role: Option<Attribute>,
|
|
}
|