DataMapper 개선, MQTTPipeLine 개발 중

This commit is contained in:
김형인
2025-06-06 02:17:54 +09:00
parent 4db2791486
commit d0e299585b
23 changed files with 524 additions and 141 deletions

View File

@@ -0,0 +1,17 @@
using System.Collections.Generic;
namespace UVC.Data
{
/// <summary>
/// DataMapper에서 사용되는 데이터 값 매핑을 위한 클래스입니다.
/// </summary>
/// <remarks>
/// ...
/// 지원되는 타입:
/// ...
/// - DataMap (문자열 매핑 딕셔너리) - 특정 문자열 값을 다른 문자열로 변환합니다.
/// 예: "ON" -> "활성화", "OFF" -> "비활성화"
/// ...
/// </remarks>
public class DataMap : Dictionary<string, string>{}
}