mirror of
https://github.com/stuff-by-3-random-dudes/UWUVCI-AIO-WPF
synced 2024-11-10 13:44:13 +00:00
25 lines
421 B
C#
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; }
|
|
}
|
|
}
|