release 1.0
This commit is contained in:
@@ -1,9 +1,17 @@
|
||||
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,
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user