gitlib/dto/create_group_request.rs
use serde::{Deserialize, Serialize};
use crate::enums::owner_type::OwnerType;
#[derive(Serialize, Deserialize, Debug, Clone)]
#[serde(rename_all = "camelCase")]
pub struct CreateGroupRequest {
pub owner_type: OwnerType,
pub path: String,
pub is_public: bool,
pub is_internal: bool,
}