11 lines
219 B
C#
11 lines
219 B
C#
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; }
|
|
|
|
} |