mirror of
https://gitlab.com/walljm/dynamicbible.git
synced 2025-07-23 07:19:50 -04:00
22 lines
450 B
C#
22 lines
450 B
C#
using System.Text.Json.Serialization;
|
|
|
|
namespace DynamicBible.DataPreparation.Models;
|
|
|
|
public class RMAC
|
|
{
|
|
[JsonPropertyName("id")]
|
|
public string? Id { get; set; }
|
|
|
|
[JsonPropertyName("d")]
|
|
public List<string>? Description { get; set; }
|
|
}
|
|
|
|
public class RMACCrossRef
|
|
{
|
|
// <s id='1' r='n-li' />
|
|
[JsonPropertyName("i")]
|
|
public string? Id { get; set; }
|
|
|
|
[JsonPropertyName("r")]
|
|
public string? Reference { get; set; }
|
|
} |