mirror of
https://github.com/kwsch/NHSE.git
synced 2026-03-27 20:14:49 -05:00
10 lines
162 B
C#
10 lines
162 B
C#
using System.Collections.Generic;
|
|
|
|
namespace NHSE.Core
|
|
{
|
|
public interface INamedObject
|
|
{
|
|
string ToString(IReadOnlyList<string> names);
|
|
}
|
|
}
|