namespace View_by_Distance.Shared.Models.Properties;

public interface IContainer
{

    public int G { get; }
    public List<Item> Items { get; }
    public int R { get; }
    public string SourceDirectory { get; }

}