first edit
This commit is contained in:
31
XLIMS.DATA/Models/DeviceSet.cs
Normal file
31
XLIMS.DATA/Models/DeviceSet.cs
Normal file
@@ -0,0 +1,31 @@
|
||||
using System;
|
||||
using System.Collections.Generic;
|
||||
|
||||
namespace XLIMS.DATA.Models;
|
||||
|
||||
public partial class DeviceSet
|
||||
{
|
||||
public int Id { get; set; }
|
||||
|
||||
public int DivisionId { get; set; }
|
||||
|
||||
public string? Name { get; set; }
|
||||
|
||||
public string? Tip { get; set; }
|
||||
|
||||
public string? Serial { get; set; }
|
||||
|
||||
public DateTime? NextPovDate { get; set; }
|
||||
|
||||
public string? Status { get; set; }
|
||||
public string? Dpzn { get; set; }
|
||||
public string? Hrtc { get; set; }
|
||||
|
||||
public string? Gsrs { get; set; }
|
||||
|
||||
public string? Oi { get; set; }
|
||||
|
||||
public virtual ICollection<DataSet> DataSets { get; set; } = new List<DataSet>();
|
||||
|
||||
public virtual DivisionSet Division { get; set; } = null!;
|
||||
}
|
||||
Reference in New Issue
Block a user