2021与蓝度共同重构项目,服务端
zhanzhiqin
2022-07-28 e15ed2d9563412769d7e7c7d8c9cba200e3700af
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;
 
}