removed-person
This commit is contained in:
@ -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
|
||||
|
||||
} // ...
|
@ -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
|
||||
|
||||
} // ...
|
@ -1,8 +0,0 @@
|
||||
namespace View_by_Distance.Shared.Models.Properties;
|
||||
|
||||
public interface IPersonAddressCity
|
||||
{
|
||||
|
||||
public string Value { get; }
|
||||
|
||||
} // ...
|
@ -1,8 +0,0 @@
|
||||
namespace View_by_Distance.Shared.Models.Properties;
|
||||
|
||||
public interface IPersonAddressState
|
||||
{
|
||||
|
||||
public string Value { get; }
|
||||
|
||||
} // ...
|
@ -1,8 +0,0 @@
|
||||
namespace View_by_Distance.Shared.Models.Properties;
|
||||
|
||||
public interface IPersonAddressStreet
|
||||
{
|
||||
|
||||
public string Value { get; }
|
||||
|
||||
} // ...
|
@ -1,8 +0,0 @@
|
||||
namespace View_by_Distance.Shared.Models.Properties;
|
||||
|
||||
public interface IPersonAddressZipCode
|
||||
{
|
||||
|
||||
public string Value { get; }
|
||||
|
||||
} // ...
|
@ -1,8 +0,0 @@
|
||||
namespace View_by_Distance.Shared.Models.Properties;
|
||||
|
||||
public interface IPersonComment
|
||||
{
|
||||
|
||||
public string Value { get; }
|
||||
|
||||
} // ...
|
@ -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; }
|
||||
|
||||
}
|
@ -1,8 +0,0 @@
|
||||
namespace View_by_Distance.Shared.Models.Properties;
|
||||
|
||||
public interface IPersonEmail
|
||||
{
|
||||
|
||||
public string Value { get; }
|
||||
|
||||
} // ...
|
@ -1,8 +0,0 @@
|
||||
namespace View_by_Distance.Shared.Models.Properties;
|
||||
|
||||
public interface IPersonId
|
||||
{
|
||||
|
||||
public long Value { get; }
|
||||
|
||||
} // ...
|
@ -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
|
||||
|
||||
} // ...
|
@ -1,8 +0,0 @@
|
||||
namespace View_by_Distance.Shared.Models.Properties;
|
||||
|
||||
public interface IPersonNameAlias
|
||||
{
|
||||
|
||||
public string Value { get; }
|
||||
|
||||
} // ...
|
@ -1,8 +0,0 @@
|
||||
namespace View_by_Distance.Shared.Models.Properties;
|
||||
|
||||
public interface IPersonNameFirst
|
||||
{
|
||||
|
||||
public string Value { get; }
|
||||
|
||||
} // ...
|
@ -1,8 +0,0 @@
|
||||
namespace View_by_Distance.Shared.Models.Properties;
|
||||
|
||||
public interface IPersonNameLast
|
||||
{
|
||||
|
||||
public string Value { get; }
|
||||
|
||||
} // ...
|
@ -1,8 +0,0 @@
|
||||
namespace View_by_Distance.Shared.Models.Properties;
|
||||
|
||||
public interface IPersonNameMiddle
|
||||
{
|
||||
|
||||
public string Value { get; }
|
||||
|
||||
} // ...
|
@ -1,8 +0,0 @@
|
||||
namespace View_by_Distance.Shared.Models.Properties;
|
||||
|
||||
public interface IPersonNumber
|
||||
{
|
||||
|
||||
public string Value { get; }
|
||||
|
||||
} // ...
|
@ -1,8 +0,0 @@
|
||||
namespace View_by_Distance.Shared.Models.Properties;
|
||||
|
||||
public interface IPersonURL
|
||||
{
|
||||
|
||||
public string Value { get; }
|
||||
|
||||
} // ...
|
Reference in New Issue
Block a user