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

26 lines
421 B
C#
Raw Normal View History

2020-03-01 15:40:36 +01: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 21:30:31 +02:00
[Serializable]
public class PNGTGA
2020-03-01 15:40:36 +01: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 15:40:36 +01:00
}
}