8 lines
163 B
C#
8 lines
163 B
C#
using System.Collections.Generic;
|
|
|
|
namespace Cryville.Crtr.Browsing.UI {
|
|
public interface IBrowserItemMeta {
|
|
IEnumerable<MetaProperty> Properties { get; }
|
|
}
|
|
}
|