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