Files
aistudio-wpf-diagram/AIStudio.Wpf.DiagramDesigner/ViewModels/AdditionViewModel/Interface/IAnimationViewModel.cs
2023-04-29 18:36:50 +08:00

32 lines
609 B
C#

using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using System.Windows.Media;
namespace AIStudio.Wpf.DiagramDesigner
{
public interface IAnimationViewModel
{
LineAnimation Animation
{
get; set;
}
double Duration
{
get; set;
}
Color Color
{
get; set;
}
ISharpPath AnimationPath
{
get; set;
}
event PropertyChangedEventHandler PropertyChanged;
}
}