mirror of https://github.com/leiurayer/downkyi
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
37 lines
759 B
37 lines
759 B
using Prism.Mvvm;
|
|
|
|
namespace DownKyi.Images
|
|
{
|
|
public class VectorImage : BindableBase
|
|
{
|
|
private double width;
|
|
public double Width
|
|
{
|
|
get { return width; }
|
|
set { SetProperty(ref width, value); }
|
|
}
|
|
|
|
private double height;
|
|
public double Height
|
|
{
|
|
get { return height; }
|
|
set { SetProperty(ref height, value); }
|
|
}
|
|
|
|
private string data;
|
|
public string Data
|
|
{
|
|
get { return data; }
|
|
set { SetProperty(ref data, value); }
|
|
}
|
|
|
|
private string fill;
|
|
public string Fill
|
|
{
|
|
get { return fill; }
|
|
set { SetProperty(ref fill, value); }
|
|
}
|
|
|
|
}
|
|
}
|