package com.gzlh.led.handler;

import com.gzlh.led.brand.LedBrandType;

import io.netty.channel.ChannelHandlerContext;

public interface ILedHandler {

    LedBrandType brandType();

    void sendMsg(int positionLine, String content);
    void sendMsg(String content);
}