로직 개선

This commit is contained in:
김형인
2025-06-07 01:53:51 +09:00
parent d0e299585b
commit 4b490d79f4
9 changed files with 671 additions and 58 deletions

View File

@@ -0,0 +1,26 @@
#nullable enable
using Newtonsoft.Json.Linq;
using System.Collections.Generic;
namespace UVC.Data
{
public class DataMask : JObject
{
/// <summary>
/// DataObject의 Id에 해당하는 key 문자열
/// </summary>
public string? ObjectIdKey { get; set; } = null;
/// <summary>
/// DataObject의 이름을 나타내는 속성입니다. DataRepository에서 사용됩니다.
/// </summary>
public string ObjectName { get; set; } = string.Empty;
/// <summary>
/// 교체 할 이름을 나타내는 딕셔너리입니다.
/// </summary>
public Dictionary<string, string>? NamesForReplace { get; set; }
}
}