Files
killpaper/src/model/corporation.rs
2025-09-05 00:47:46 +02:00

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,
}