New file |
| | |
| | | package com.hdl.sdk.link.bean; |
| | | |
| | | import java.io.Serializable; |
| | | |
| | | import androidx.annotation.NonNull; |
| | | |
| | | /** |
| | | * Created by Zoro |
| | | * Created on 2022/1/23 |
| | | * description: |
| | | */ |
| | | public class LinkCreateSceneFunctionattributesEnumerationsBean implements Serializable { |
| | | private String value; |
| | | private String desc; |
| | | |
| | | public String getValue() { |
| | | return value == null ? "" : value; |
| | | } |
| | | |
| | | public void setValue(@NonNull String value) { |
| | | this.value = value; |
| | | } |
| | | |
| | | public String getDesc() { |
| | | return desc == null ? "" : desc; |
| | | } |
| | | |
| | | public void setDesc(@NonNull String desc) { |
| | | this.desc = desc; |
| | | } |
| | | } |