2025-06-16 17:24:23 +08:00

28 lines
781 B
C#

using Volo.Abp.ObjectExtending;
using Volo.Abp.Threading;
namespace Syc.Basic.Web.WMS;
public static class WMSDtoExtensions
{
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
*/
});
}
}