feat: Add CEchoSetting struct

This commit is contained in:
chenhuijun
2024-07-31 15:43:10 +08:00
parent d776f6baaf
commit 0766d588f9

15
src/dicom/CEchoSetting.h Normal file
View File

@@ -0,0 +1,15 @@
#ifndef ABFC0BB9_0A64_4855_86FA_C61EEA6FE591
#define ABFC0BB9_0A64_4855_86FA_C61EEA6FE591
#include <string>
struct CEchoSetting
{
std::string IP;
std::string AETitle;
std::string ServerTitle;
int Port;
int Type;
};
#endif /* ABFC0BB9_0A64_4855_86FA_C61EEA6FE591 */