mirror of https://github.com/abpframework/abp.git
Browse Source
Before always the default value of the enum was returned from the Map functionpull/21660/head
5 changed files with 33 additions and 4 deletions
@ -0,0 +1,8 @@ |
|||
using System; |
|||
using System.Collections.Generic; |
|||
using System.Linq; |
|||
using System.Text; |
|||
using System.Threading.Tasks; |
|||
|
|||
namespace Volo.Abp.AutoMapper.SampleClasses; |
|||
public enum MyEnum { Value1, Value2, Value3 }; |
|||
@ -0,0 +1,8 @@ |
|||
using System; |
|||
using System.Collections.Generic; |
|||
using System.Linq; |
|||
using System.Text; |
|||
using System.Threading.Tasks; |
|||
|
|||
namespace Volo.Abp.AutoMapper.SampleClasses; |
|||
public enum MyEnumDto { Value1, Value2, Value3 }; |
|||
Loading…
Reference in new issue