12 lines
188 B
C#
12 lines
188 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
|
|
namespace XLIMS.DATA.Models;
|
|
|
|
public partial class BookSet
|
|
{
|
|
public int Id { get; set; }
|
|
|
|
public string? Number { get; set; }
|
|
}
|