DataMapper 개선, MQTTPipeLine 개발 중
This commit is contained in:
17
Assets/Scripts/UVC/Data/DataMap.cs
Normal file
17
Assets/Scripts/UVC/Data/DataMap.cs
Normal 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>{}
|
||||
}
|
||||
Reference in New Issue
Block a user