Family Tree as Markdown Files

This commit is contained in:
2023-07-16 23:06:08 -07:00
parent 240c1ef6f9
commit b2fe53275f
15 changed files with 594 additions and 202 deletions

View File

@ -2,7 +2,17 @@ using System.Text.Json;
namespace View_by_Distance.Shared.Models;
public record GenealogicalDataCommunication(string? Id, string? UId, string? Name, string? GivenName, string? SurName, string? Suffix, string? NickName, char Sex, DateTime? Birth, DateTime? Death, DateTime? Changed)
public record GenealogicalDataCommunication(string? Id,
string? UId,
string? Name,
string? GivenName,
string? SurName,
string? Suffix,
string? NickName,
char Sex,
DateTime? Birth,
DateTime? Death,
DateTime? Changed)
{
public override string ToString()