2022-05-08 12:28:50 -07:00

12 lines
311 B
C#

namespace View_by_Distance.Shared.Models.Stateless.Methods;
public interface IPersonNameFirst
{
string TestStatic_GetDefaultValue() => PersonNameFirst.GetDefaultValue(); // {{1}}SingletonValue
static string GetDefaultValue() => PersonNameFirst.GetDefaultValue(); // {{1}}SingletonValue
// ...
}