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.
15 lines
376 B
15 lines
376 B
using System;
|
|
using System.Threading.Tasks;
|
|
using Avalonia.Media.Imaging;
|
|
using speedLight.UI.Helpers;
|
|
using speedLight.UI.Models;
|
|
|
|
namespace speedLight.UI.ViewModels;
|
|
|
|
public class MainWindowViewModel : ViewModelBase
|
|
{
|
|
public PictureList Pictures = new PictureList();
|
|
|
|
public string ImageSource => "";
|
|
public Task<Bitmap?> ImageFromWebsite { get; set; }
|
|
}
|