2021与蓝度共同重构项目,服务端
liuhaonan
2022-05-16 3b8877b6d8c13e37f8c7769282a2751b0faeb499
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;
 
}