Files
herolib/lib/web/doctree/meta/model_announcement.v
2025-12-02 04:15:22 +01:00

12 lines
319 B
V

module meta
// Announcement bar config structure
pub struct Announcement {
pub mut:
// id string @[json: 'id']
content string @[json: 'content']
background_color string @[json: 'backgroundColor']
text_color string @[json: 'textColor']
is_closeable bool @[json: 'isCloseable']
}