using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace Sony.Filtr.Globalization.v3 { public class MarketGlobalizationValue { internal MarketGlobalizationValue(MarketGlobalizationDbValue dbValue) { if (dbValue == null) return; ApplicationId = dbValue.ApplicationId; Value = dbValue.Value; } public int ApplicationId { get; set; } public string Value { get; set; } } }