forked from s425077/PotatoPlan
17 lines
338 B
C#
17 lines
338 B
C#
|
using System;
|
|||
|
using System.Collections.Generic;
|
|||
|
using System.Linq;
|
|||
|
using System.Text;
|
|||
|
using System.Threading.Tasks;
|
|||
|
|
|||
|
public class ImageData
|
|||
|
{
|
|||
|
public ImageData(string imagePath, string label)
|
|||
|
{
|
|||
|
ImagePath = imagePath;
|
|||
|
Label = label;
|
|||
|
}
|
|||
|
|
|||
|
public readonly string ImagePath;
|
|||
|
public readonly string Label;
|
|||
|
}
|