11 lines
299 B
C#
11 lines
299 B
C#
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
|
|
|
|
} // ... |