24 lines
541 B
C#
24 lines
541 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
|
|
namespace XLIMS.DATA.Models;
|
|
|
|
public partial class DivisionSet
|
|
{
|
|
public int Id { get; set; }
|
|
|
|
public string? Name { get; set; }
|
|
|
|
public string? Person { get; set; }
|
|
|
|
public string? Adress { get; set; }
|
|
|
|
public string? Telefon { get; set; }
|
|
|
|
public int? Kdl { get; set; }
|
|
|
|
public virtual ICollection<DeviceSet> DeviceSets { get; set; } = new List<DeviceSet>();
|
|
|
|
public virtual ICollection<DocumentSet> DocumentSets { get; set; } = new List<DocumentSet>();
|
|
}
|