IW4M-Admin/SharedLibraryCore/Dtos/Meta/WebfrontTranslationHelper.cs

14 lines
318 B
C#
Raw Normal View History

using System;
using System.Collections.Generic;
using System.Text;
namespace SharedLibraryCore.Dtos.Meta
{
public class WebfrontTranslationHelper
{
public bool IsInterpolation { get; set; }
public string MatchValue { get; set; }
public string TranslationValue { get; set; }
}
}