2021与蓝度共同重构项目,服务端
liuhaonan
2022-11-18 b531004a3cbd33d7bb9f5b7dce06ddd4f5e7ec9a
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;
 
}