removed-person

This commit is contained in:
2023-08-05 09:35:38 -07:00
parent 9686b93617
commit 9fd34adcc1
104 changed files with 29 additions and 2151 deletions

View File

@ -1,15 +0,0 @@
namespace View_by_Distance.Shared.Models.Properties;
public interface IPerson
{
public PersonId Id { get; } //long
public PersonBirthday Birthday { get; } //DateTime
public PersonName Name { get; } //JsonValueKind.Object
public List<PersonComment> Comments { get; } //string
public List<PersonURL> URLs { get; } //string
public List<PersonNumber> Numbers { get; } //string
public List<PersonEmail> Emails { get; } //string
public List<PersonAddress> Addresses { get; } //JsonValueKind.Array
} // ...

View File

@ -1,11 +0,0 @@
namespace View_by_Distance.Shared.Models.Properties;
public interface IPersonAddress
{
public PersonAddressStreet Street { get; } //string
public PersonAddressCity City { get; } //string
public PersonAddressState State { get; } //string
public PersonAddressZipCode ZipCode { get; } //string
} // ...

View File

@ -1,8 +0,0 @@
namespace View_by_Distance.Shared.Models.Properties;
public interface IPersonAddressCity
{
public string Value { get; }
} // ...

View File

@ -1,8 +0,0 @@
namespace View_by_Distance.Shared.Models.Properties;
public interface IPersonAddressState
{
public string Value { get; }
} // ...

View File

@ -1,8 +0,0 @@
namespace View_by_Distance.Shared.Models.Properties;
public interface IPersonAddressStreet
{
public string Value { get; }
} // ...

View File

@ -1,8 +0,0 @@
namespace View_by_Distance.Shared.Models.Properties;
public interface IPersonAddressZipCode
{
public string Value { get; }
} // ...

View File

@ -1,8 +0,0 @@
namespace View_by_Distance.Shared.Models.Properties;
public interface IPersonComment
{
public string Value { get; }
} // ...

View File

@ -9,7 +9,6 @@ public interface IPersonContainer
public string DisplayDirectoryName { init; get; }
public long? Key { init; get; }
public bool? KeyIsMaxBirthday { init; get; }
public Person? Person { init; get; }
public PersonDirectory? PersonDirectory { init; get; }
}

View File

@ -1,8 +0,0 @@
namespace View_by_Distance.Shared.Models.Properties;
public interface IPersonEmail
{
public string Value { get; }
} // ...

View File

@ -1,8 +0,0 @@
namespace View_by_Distance.Shared.Models.Properties;
public interface IPersonId
{
public long Value { get; }
} // ...

View File

@ -1,11 +0,0 @@
namespace View_by_Distance.Shared.Models.Properties;
public interface IPersonName
{
public PersonNameFirst First { get; } //string
public PersonNameMiddle Middle { get; } //string
public PersonNameLast Last { get; } //string
public PersonNameAlias Alias { get; } //string
} // ...

View File

@ -1,8 +0,0 @@
namespace View_by_Distance.Shared.Models.Properties;
public interface IPersonNameAlias
{
public string Value { get; }
} // ...

View File

@ -1,8 +0,0 @@
namespace View_by_Distance.Shared.Models.Properties;
public interface IPersonNameFirst
{
public string Value { get; }
} // ...

View File

@ -1,8 +0,0 @@
namespace View_by_Distance.Shared.Models.Properties;
public interface IPersonNameLast
{
public string Value { get; }
} // ...

View File

@ -1,8 +0,0 @@
namespace View_by_Distance.Shared.Models.Properties;
public interface IPersonNameMiddle
{
public string Value { get; }
} // ...

View File

@ -1,8 +0,0 @@
namespace View_by_Distance.Shared.Models.Properties;
public interface IPersonNumber
{
public string Value { get; }
} // ...

View File

@ -1,8 +0,0 @@
namespace View_by_Distance.Shared.Models.Properties;
public interface IPersonURL
{
public string Value { get; }
} // ...