You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
24 lines
619 B
24 lines
619 B
using System;
|
|
using System.Collections.Generic;
|
|
|
|
#nullable disable
|
|
|
|
namespace QualityControlPlatform.Models.DbContext
|
|
{
|
|
public partial class Reporttemplate
|
|
{
|
|
public Reporttemplate()
|
|
{
|
|
Reports = new HashSet<Report>();
|
|
}
|
|
|
|
public int ReportTemplateId { get; set; }
|
|
public int? DiseasesId { get; set; }
|
|
public string Question { get; set; }
|
|
public ulong? IfMust { get; set; }
|
|
public string Type { get; set; }
|
|
|
|
public virtual Disease Diseases { get; set; }
|
|
public virtual ICollection<Report> Reports { get; set; }
|
|
}
|
|
}
|
|
|