namespace Sanhe.Abp.Localization.Dynamic; public class LocalizedStringCacheResetEventData { /// /// 是否删除 /// public bool IsDeleted { get; set; } /// /// 资源名 /// public string ResourceName { get; set; } /// /// 文化名称 /// public string CultureName { get; set; } /// /// 键 /// public string Key { get; set; } /// /// 值 /// public string Value { get; set; } public LocalizedStringCacheResetEventData() { } public LocalizedStringCacheResetEventData( string resourceName, string cultureName, string key, string value) { ResourceName = resourceName; CultureName = cultureName; Key = key; Value = value; IsDeleted = false; } }