32 lines
700 B
C#
32 lines
700 B
C#
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!;
|
|
}
|