12 lines
293 B
C#
12 lines
293 B
C#
namespace View_by_Distance.Shared.Models.Stateless.Methods;
|
|
|
|
public interface IPersonEmail
|
|
{
|
|
|
|
string TestStatic_GetDefaultValue() => PersonEmail.GetDefaultValue(); // <{1}>PluralValue
|
|
|
|
static string GetDefaultValue() => PersonEmail.GetDefaultValue(); // <{1}>PluralValue
|
|
|
|
// ...
|
|
|
|
} |