TemplateContent.cs 439 B

123456789101112131415
  1. // Copyright (c) The Avalonia Project. All rights reserved.
  2. // Licensed under the MIT license. See licence.md file in the project root for full license information.
  3. using System;
  4. namespace Avalonia.Metadata
  5. {
  6. /// <summary>
  7. /// Defines the property that contains the object's content in markup.
  8. /// </summary>
  9. [AttributeUsage(AttributeTargets.Property)]
  10. public class TemplateContentAttribute : Attribute
  11. {
  12. }
  13. }