15 lines
343 B
C#
15 lines
343 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
|
|
namespace FamilyTreeAPI.Models
|
|
{
|
|
public partial class Lookup
|
|
{
|
|
public int Id { get; set; }
|
|
public string? Code { get; set; }
|
|
public string? Description { get; set; }
|
|
public string? Type { get; set; }
|
|
public bool? Lactive { get; set; }
|
|
}
|
|
}
|