mirror of
https://github.com/penpot/penpot.git
synced 2026-03-05 09:41:12 +00:00
9 lines
171 B
Rust
9 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>,
|
|
}
|