// Copyright (C) 2023 Aravinth Manivannan // SPDX-FileCopyrightText: 2023 Aravinth Manivannan // // SPDX-License-Identifier: MIT //! VCS repository relative to a project. use serde::{Deserialize, Serialize}; /// VCS repository relative to a project. #[derive(Clone, Debug, Serialize, Deserialize, Default, Eq, PartialEq)] pub struct Repository { /// Suffix to add to the clone URL of the project to access the repository. pub name: String, }