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