10 lines
221 B
C#
10 lines
221 B
C#
namespace View_by_Distance.Shared.Models.Stateless.Methods;
|
|
|
|
public interface IDistanceHolder
|
|
{ // ...
|
|
|
|
double TestStatic_GetDefaultValue();
|
|
|
|
static double GetDefaultValue() => DistanceHolder.GetDefaultValue();
|
|
|
|
} |