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

25 lines
421 B
C#

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace UWUVCI_AIO_WPF.Classes
{
[Serializable]
public class PNGTGA
{
private string imgPath = null;
public string ImgPath
{
get { return imgPath; }
set { imgPath = value;
}
}
public byte[] ImgBin { get; set; } = null;
public string extension { get; set; }
}
}