using Volo.Abp.Threading;
namespace CMS.Plugin.PipeLineLems.Application.Contracts;
///
/// Dto扩展
///
public static class CMSPluginDtoExtensions
{
private static readonly OneTimeRunner OneTimeRunner = new OneTimeRunner();
///
/// Configures this instance.
///
public static void Configure()
{
OneTimeRunner.Run(() =>
{
/* You can add extension properties to DTOs
* defined in the depended modules.
*
* Example:
*
* ObjectExtensionManager.Instance
* .AddOrUpdateProperty("Title");
*
* See the documentation for more:
* https://docs.abp.io/en/abp/latest/Object-Extensions
*/
});
}
}