2022-08-22 09:10:19 -07:00

10 lines
219 B
C#

namespace View_by_Distance.Shared.Models.Stateless.Methods;
public interface IRelativePaths
{ // ...
double TestStatic_GetDefaultValue();
static double GetDefaultValue() => RelativePaths.GetDefaultValue();
}