Squashed 'FSI.Lib/' content from commit dceb500
git-subtree-dir: FSI.Lib git-subtree-split: dceb5008a2176c2b8ab5e55a73b1c25d31a7f841
This commit is contained in:
25
FSI.Lib/Guis/Prj.Mgt/Model/Prj.cs
Normal file
25
FSI.Lib/Guis/Prj.Mgt/Model/Prj.cs
Normal file
@@ -0,0 +1,25 @@
|
||||
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);
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user