17 lines
298 B
17 lines
298 B
1 year ago
|
package com.fine.theme.utils;
|
||
|
|
||
|
import com.formdev.flatlaf.FlatClientProperties;
|
||
|
|
||
|
/**
|
||
|
* FR-UI中使用的各类属性
|
||
|
*
|
||
|
* @author Levy.Xie
|
||
|
* @since 11.0
|
||
|
* Created on 2023/12/15
|
||
|
*/
|
||
|
public interface FineClientProperties extends FlatClientProperties {
|
||
|
|
||
|
String BUTTON_TYPE_GROUP = "group";
|
||
|
|
||
|
}
|