14 lines
258 B
C#
14 lines
258 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
|
|
namespace XLIMS.DATA.Models;
|
|
|
|
public partial class Spoi
|
|
{
|
|
public int Id { get; set; }
|
|
|
|
public string? Nmoi { get; set; }
|
|
|
|
public virtual ICollection<Tip> Tips { get; set; } = new List<Tip>();
|
|
}
|