forked from s425077/PotatoPlan
19 lines
441 B
C#
19 lines
441 B
C#
|
using System;
|
|||
|
using System.Collections.Generic;
|
|||
|
using System.Linq;
|
|||
|
using System.Text;
|
|||
|
using System.Threading.Tasks;
|
|||
|
|
|||
|
public class InMemoryImageData
|
|||
|
{
|
|||
|
public InMemoryImageData(byte[] image, string label, string imageFileName)
|
|||
|
{
|
|||
|
Image = image;
|
|||
|
Label = label;
|
|||
|
ImageFileName = imageFileName;
|
|||
|
}
|
|||
|
|
|||
|
public readonly byte[] Image;
|
|||
|
public readonly string Label;
|
|||
|
public readonly string ImageFileName;
|
|||
|
}
|