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

26 lines
421 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
{
2020-04-06 19:30:31 +00:00
[Serializable]
public class PNGTGA
2020-03-01 14:40:36 +00:00
{
private string imgPath = null;
public string ImgPath
{
get { return imgPath; }
set { imgPath = value;
}
}
public byte[] ImgBin { get; set; } = null;
public string extension { get; set; }
2020-03-01 14:40:36 +00:00
}
}