IAnimationSetter.cs 332 B

1234567891011
  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. namespace Avalonia.Animation
  4. {
  5. public interface IAnimationSetter
  6. {
  7. AvaloniaProperty Property { get; set; }
  8. object Value { get; set; }
  9. }
  10. }