EntityResDescriptionAttribute.cs 220 B

123456789101112
  1. using System.ComponentModel;
  2. namespace System.Data
  3. {
  4. sealed class EntityResDescriptionAttribute : DescriptionAttribute
  5. {
  6. public EntityResDescriptionAttribute (string description)
  7. : base (description)
  8. {
  9. }
  10. }
  11. }