로직 개선
This commit is contained in:
26
Assets/Scripts/UVC/Data/DataMask.cs
Normal file
26
Assets/Scripts/UVC/Data/DataMask.cs
Normal 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; }
|
||||
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user