13 lines
292 B
C#
13 lines
292 B
C#
namespace View_by_Distance.Shared.Models.Stateless.Methods;
|
|
|
|
public interface IPersonURL
|
|
{
|
|
|
|
string TestStatic_GetDefaultValue() =>
|
|
GetDefaultValue(); // <{1}>PluralValue
|
|
static string GetDefaultValue() =>
|
|
PersonURL.GetDefaultValue(); // <{1}>PluralValue
|
|
|
|
// ...
|
|
|
|
} |