export class ReadStyle {
constructor(data) {
this.color = data.color;
this.fontSize = data.fontSize;
this.textAlign = data.textAlign;
this.fontFamily = data.fontFamily;
this.textShadow = data.textShadow;
this.backgroundColor = data.backgroundColor;
}
}