24 lines
508 B
C#
24 lines
508 B
C#
using IRaCIS.Core.Domain.Share;
|
|
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace IRaCIS.Core.Application.Helper
|
|
{
|
|
public class DictionaryTranslateAttribute : Attribute
|
|
{
|
|
|
|
public string DicParentCode { get; set; }
|
|
|
|
public DicDataTypeEnum DataTypeEnum { get; set; }
|
|
|
|
|
|
public DictionaryTranslateAttribute(string dicParentCode)
|
|
{
|
|
DicParentCode = dicParentCode;
|
|
}
|
|
}
|
|
}
|