erp-platform/api/src/Erp.Platform.Application.Contracts/PlatformDtoExtensions.cs
2025-11-11 22:49:52 +03:00

27 lines
750 B
C#

using Volo.Abp.Threading;
namespace Erp.Platform;
public static class PlatformDtoExtensions
{
private static readonly OneTimeRunner OneTimeRunner = new OneTimeRunner();
public static void Configure()
{
OneTimeRunner.Run(() =>
{
/* You can add extension properties to DTOs
* defined in the depended modules.
*
* Example:
*
* ObjectExtensionManager.Instance
* .AddOrUpdateProperty<IdentityRoleDto, string>("Title");
*
* See the documentation for more:
* https://docs.abp.io/en/abp/latest/Object-Extensions
*/
});
}
}