Init
This commit is contained in:
11
Shared/Models/Properties/IPersonName.cs
Normal file
11
Shared/Models/Properties/IPersonName.cs
Normal file
@ -0,0 +1,11 @@
|
||||
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
|
||||
|
||||
} // ...
|
Reference in New Issue
Block a user