27 lines
641 B
C#
27 lines
641 B
C#
using Microsoft.Extensions.Logging;
|
|
using System;
|
|
using System.Collections.Generic;
|
|
using System.Text;
|
|
|
|
namespace Atomx.Core.Jos
|
|
{
|
|
|
|
/// <summary>
|
|
/// 多语言本地化任务
|
|
/// </summary>
|
|
public partial class LocalizationJob
|
|
{
|
|
readonly ILogger<LocalizationJob> _logger;
|
|
public LocalizationJob(ILogger<LocalizationJob> logger)
|
|
{
|
|
_logger = logger;
|
|
}
|
|
|
|
public void Execute()
|
|
{
|
|
_logger.LogInformation("LocalizationJob executed at: {time}", DateTimeOffset.Now);
|
|
// 在这里添加多语言本地化的具体任务逻辑
|
|
}
|
|
}
|
|
}
|