AutoMapToAttribute.cs 353 B

123456789101112131415
  1. using System;
  2. namespace VCommon.VAutoMapper
  3. {
  4. [AttributeUsage(AttributeTargets.Class, Inherited = false, AllowMultiple = true)]
  5. public sealed class AutoMapToAttribute : Attribute
  6. {
  7. public Type[] ToTypes { get; }
  8. public AutoMapToAttribute(params Type[] toTypes)
  9. {
  10. ToTypes = toTypes;
  11. }
  12. }
  13. }