Kuangcp/JavaBase

View on GitHub
gui/src/main/java/com/github/kuangcp/tank/resource/AvatarImgMgr.java

Summary

Maintainability
A
40 mins
Test Coverage
package com.github.kuangcp.tank.resource;

import lombok.extern.slf4j.Slf4j;

/**
 * @author https://github.com/kuangcp on 2021-09-11 16:41
 */
@Slf4j
public class AvatarImgMgr extends AbstractImgListMgr {

    public static final AvatarImgMgr instance = new AvatarImgMgr();

    public AvatarImgMgr() {
        super.width = 60;
        super.height = 60;
    }

    public String getConfigKey(){
        return PropertiesMgr.Key.Img.ROUND_AVATAR;
    }
}