UWUVCI-AIO-WPF/UWUVCI AIO WPF/Classes/PNGTGA.cs

26 lines
435 B
C#
Raw Normal View History

2020-03-01 14:40:36 +00:00
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace UWUVCI_AIO_WPF.Classes
{
class PNGTGA : BaseModel
2020-03-01 14:40:36 +00:00
{
private string imgPath = null;
public string ImgPath
{
get { return imgPath; }
set { imgPath = value;
OnPropertyChanged();
}
}
public byte[] ImgBin { get; set; } = null;
public string extension { get; set; }
2020-03-01 14:40:36 +00:00
}
}