mirror of
https://github.com/penpot/penpot.git
synced 2025-05-10 05:36:37 +02:00
8 lines
171 B
Rust
8 lines
171 B
Rust
use super::Corners;
|
|
use super::Layout;
|
|
|
|
#[derive(Debug, Clone, PartialEq, Default)]
|
|
pub struct Frame {
|
|
pub corners: Option<Corners>,
|
|
pub layout: Option<Layout>,
|
|
}
|