Rename resource meta interface.

This commit is contained in:
2023-11-29 13:44:25 +08:00
parent e210837329
commit 190c3ef680
6 changed files with 8 additions and 9 deletions

View File

@@ -0,0 +1,7 @@
using System.Collections.Generic;
namespace Cryville.Crtr.Browsing {
public interface IResourceMeta {
IEnumerable<MetaProperty> Properties { get; }
}
}