Files
FSI.BT.IR.Tools/FSI.Lib/Guis/Prj.Mgt/Model/Prj.cs
maier_S a0095a0516 Squashed 'FSI.Lib/' content from commit 6aa4846
git-subtree-dir: FSI.Lib
git-subtree-split: 6aa48465a834a7bfdd9cbeae8d2e4f769d0c0ff8
2022-03-23 10:15:26 +01:00

26 lines
674 B
C#

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace FSI.Lib.Guis.Prj.Mgt.Model
{
public class Prj
{
public Int64 PlantNo { get; set; }
public Int64 SubPlantNo { get; set; }
public Int64 No { get; set; }
public string Plant { get; set; }
public string SubPlant { get; set; }
public string Description { get; set; }
public string DescriptionDetail { get; set; }
public string FullName { get; set; }
}
public interface IPrjDataProvider
{
IEnumerable<Prj> Load(string path, bool showPdf);
}
}