2021与蓝度共同重构项目,服务端
fix
zhanzhiqin
2022-06-30 3c7311b3a6c4da836cbba8fe7997f5aec3e64c91
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
package com.sandu.ximon.admin.dto.nova;
 
import lombok.Data;
 
@Data
public class PlayerWidgetLineTextAttributes {
 
    private String content;
 
    private Integer fontSize;
 
    private String textColor;
 
    private boolean isBold;
 
    private PlayerWidgetLineTextAttributesFontFamily fontFamily;
 
    private boolean isUnderline;
 
    private String backgroundColor;
 
}