14 lines
233 B
C#
14 lines
233 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
|
|
namespace XLIMS.DATA.Models;
|
|
|
|
public partial class PersonalSet
|
|
{
|
|
public int Id { get; set; }
|
|
|
|
public string? Person { get; set; }
|
|
|
|
public string? Status { get; set; }
|
|
}
|