10 lines
243 B
C#
10 lines
243 B
C#
using System.Collections.ObjectModel;
|
|
|
|
namespace View_by_Distance.Shared.Models.Methods;
|
|
|
|
public interface IMapLogic
|
|
{
|
|
|
|
(bool, ReadOnlyDictionary<int, ReadOnlyCollection<PersonContainer>>?) GetWholePercentagesToPersonContainers(int id);
|
|
|
|
} |