26 lines
615 B
C#
26 lines
615 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Drawing;
|
|
using System.IO;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace PictureHandling
|
|
{
|
|
public class LocalPicture
|
|
{
|
|
public string PictureFileName { get; set; }
|
|
public string InitialPath { get; set; }
|
|
public string PictureFullPath {
|
|
get {
|
|
return Path.Combine(InitialPath, PictureFileName);
|
|
}
|
|
}
|
|
public Image AktImage { get; set; }
|
|
public int AktImWidth { get; set; }
|
|
public int AktImHeight { get; set; }
|
|
|
|
}
|
|
}
|