using NCC.Dependency;
using System;
namespace NCC.UnifyResult
{
///
/// 规范化模型特性
///
[SuppressSniffer, AttributeUsage(AttributeTargets.Class)]
public class UnifyModelAttribute : Attribute
{
///
/// 规范化模型
///
///
public UnifyModelAttribute(Type modelType)
{
ModelType = modelType;
}
///
/// 模型类型(泛型)
///
public Type ModelType { get; set; }
}
}