mirror of
https://gitee.com/akwkevin/aistudio.-wpf.-diagram
synced 2026-03-03 00:00:57 +08:00
40 lines
727 B
C#
40 lines
727 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 LineAnimation
|
|
{
|
|
get; set;
|
|
}
|
|
double Duration
|
|
{
|
|
get; set;
|
|
}
|
|
Color Color
|
|
{
|
|
get; set;
|
|
}
|
|
string Path
|
|
{
|
|
get; set;
|
|
}
|
|
double Width
|
|
{
|
|
get; set;
|
|
}
|
|
double Height
|
|
{
|
|
get; set;
|
|
}
|
|
event PropertyChangedEventHandler PropertyChanged;
|
|
}
|
|
}
|