mirror of https://github.com/abpframework/abp.git
16 changed files with 19 additions and 17 deletions
@ -1,6 +1,6 @@ |
|||
using System.Text.Json; |
|||
|
|||
namespace Volo.Abp.Json.Microsoft |
|||
namespace Volo.Abp.Json |
|||
{ |
|||
public class AbpJsonSerializerOptions |
|||
{ |
|||
@ -1,9 +1,10 @@ |
|||
using System; |
|||
using Microsoft.Extensions.DependencyInjection; |
|||
using Microsoft.Extensions.Options; |
|||
using Volo.Abp.Json.Microsoft.JsonConverters; |
|||
using Volo.Abp.Json.JsonConverters; |
|||
using Volo.Abp.Json; |
|||
|
|||
namespace Volo.Abp.Json.Microsoft |
|||
namespace Volo.Abp.Json |
|||
{ |
|||
public class AbpJsonSerializerOptionsSetup : IConfigureOptions<AbpJsonSerializerOptions> |
|||
{ |
|||
@ -1,8 +1,9 @@ |
|||
using System; |
|||
using System.Text.Json; |
|||
using System.Text.Json.Serialization; |
|||
using Volo.Abp.Domain.Entities; |
|||
|
|||
namespace Volo.Abp.Domain.Entities |
|||
namespace Volo.Abp.MemoryDb.JsonConverters |
|||
{ |
|||
public class EntityJsonConverter<TEntity, TKey> : JsonConverter<TEntity> |
|||
{ |
|||
Loading…
Reference in new issue