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

12 lines
308 B
C#

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