You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
45 lines
933 B
45 lines
933 B
3 years ago
|
namespace Sanhe.Abp.Localization.Dynamic;
|
||
|
|
||
|
public class LocalizedStringCacheResetEventData
|
||
|
{
|
||
|
/// <summary>
|
||
|
/// 是否删除
|
||
|
/// </summary>
|
||
|
public bool IsDeleted { get; set; }
|
||
|
/// <summary>
|
||
|
/// 资源名
|
||
|
/// </summary>
|
||
|
public string ResourceName { get; set; }
|
||
|
/// <summary>
|
||
|
/// 文化名称
|
||
|
/// </summary>
|
||
|
public string CultureName { get; set; }
|
||
|
/// <summary>
|
||
|
/// 键
|
||
|
/// </summary>
|
||
|
public string Key { get; set; }
|
||
|
/// <summary>
|
||
|
/// 值
|
||
|
/// </summary>
|
||
|
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;
|
||
|
}
|
||
|
}
|