package com.example.client.utils;
|
|
public class ColorDescription {
|
private String hexColor;
|
private String description;
|
|
public ColorDescription(String hexColor, String description) {
|
this.hexColor = hexColor;
|
this.description = description;
|
}
|
|
public String getHexColor() {
|
return hexColor;
|
}
|
|
public String getDescription() {
|
return description;
|
}
|
}
|