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