mirror of
https://github.com/stuff-by-3-random-dudes/UWUVCI-AIO-WPF
synced 2024-11-23 19:43:03 +00:00
15 lines
273 B
C#
15 lines
273 B
C#
|
using System;
|
|||
|
using System.Collections.Generic;
|
|||
|
using System.Linq;
|
|||
|
using System.Text;
|
|||
|
using System.Threading.Tasks;
|
|||
|
|
|||
|
namespace UWUVCI_AIO_WPF.Classes
|
|||
|
{
|
|||
|
class PNGTGA
|
|||
|
{
|
|||
|
public string ImgPath { get; set; }
|
|||
|
public byte[] ImgBin { get; set; }
|
|||
|
}
|
|||
|
}
|