This commit is contained in:
2018-06-28 23:37:38 +00:00
commit 4518298aaf
152 changed files with 24114 additions and 0 deletions

19
Models/RfCaseProject.cs Normal file
View File

@@ -0,0 +1,19 @@
using System;
using System.Collections.Generic;
namespace rockfishCore.Models
{
public partial class RfCaseProject
{
// public RfCaseProject()
// {
// RfCase = new HashSet<RfCase>();
// }
public long Id { get; set; }
public string Name { get; set; }
// public virtual ICollection<RfCase> RfCase { get; set; }
}
}