using System.Drawing;
using Deltares.Geotechnics;
namespace Deltares.DSoilModel.Forms
{
public class FilmStripThumbnail
{
public FilmStripThumbnail(Image thumbnailImage, StochasticSoilProfile stochasticSoilProfile)
{
ThumbnailImage = thumbnailImage;
StochasticSoilProfile = stochasticSoilProfile;
}
///
/// The stochastic soil profile on which this thumbnail is based on.
///
public StochasticSoilProfile StochasticSoilProfile { get; set; }
///
/// The image to use as thumbnail for the stochastic soil profile.
///
public Image ThumbnailImage { get; set; }
///
/// Whether this thumbnail is selected in the filmstrip control.
///
public bool Selected { get; set; }
}
}