using System.Collections.Generic; namespace Sanhe.Abp.RealTime.Localization; /// /// The notification that needs to be localized /// public class LocalizableStringInfo { /// /// Resource name /// public string ResourceName { get; } /// /// Properties /// public string Name { get; } /// /// Formatted data /// public Dictionary Values { get; } /// /// Instantiate /// /// Resource name /// Properties /// Formatted data public LocalizableStringInfo( string resourceName, string name, Dictionary values = null) { ResourceName = resourceName; Name = name; Values = values; } }