13 lines
339 B
C#
13 lines
339 B
C#
namespace View_by_Distance.Shared.Models.Stateless;
|
|
|
|
public interface ISorting
|
|
{
|
|
|
|
const int FacesToSkipAfterSortBeforeLoad = 0;
|
|
const int FacesToTakeAfterSortBeforeLoad = 21000;
|
|
const int MaximumPerFaceShouldBeHigh = 1000;
|
|
const int DaysDeltaTolerance = 700;
|
|
const int MaximumPerKey = 27;
|
|
const int Sigma = 3;
|
|
|
|
} |