18 lines
456 B
Rust
18 lines
456 B
Rust
use image::RgbImage;
|
|
|
|
/// Represents a corporation with its details.
|
|
#[derive(Debug, Clone)]
|
|
pub struct Corporation {
|
|
/// The unique identifier of the corporation.
|
|
pub corporation_id: u32,
|
|
|
|
/// The name of the corporation.
|
|
pub name: String,
|
|
|
|
/// A short version or acronym for the corporation's name.
|
|
pub short: String,
|
|
|
|
/// The logo image associated with the corporation, represented as an RGB image.
|
|
pub logo: RgbImage,
|
|
}
|