mirror of
https://github.com/bggRGjQaUbCoE/PiliPlus.git
synced 2026-04-24 04:22:39 +08:00
refa: article (#757)
Signed-off-by: bggRGjQaUbCoE <githubaccount56556@proton.me>
This commit is contained in:
13
lib/models/dynamics/opus_detail/web_css_style.dart
Normal file
13
lib/models/dynamics/opus_detail/web_css_style.dart
Normal file
@@ -0,0 +1,13 @@
|
||||
class WebCssStyle {
|
||||
String? borderRadius;
|
||||
|
||||
WebCssStyle({this.borderRadius});
|
||||
|
||||
factory WebCssStyle.fromJson(Map<String, dynamic> json) => WebCssStyle(
|
||||
borderRadius: json['borderRadius'] as String?,
|
||||
);
|
||||
|
||||
Map<String, dynamic> toJson() => {
|
||||
'borderRadius': borderRadius,
|
||||
};
|
||||
}
|
||||
Reference in New Issue
Block a user