mirror of
https://github.com/liquidraver/ZephCore.git
synced 2026-09-02 06:33:42 +00:00
15 lines
216 B
C
15 lines
216 B
C
/*
|
|
* SPDX-License-Identifier: MIT
|
|
* ChannelDetails - group channel info
|
|
*/
|
|
|
|
#pragma once
|
|
|
|
#include <mesh/Mesh.h>
|
|
#include <mesh/MeshCore.h>
|
|
|
|
struct ChannelDetails {
|
|
mesh::GroupChannel channel;
|
|
char name[32];
|
|
};
|