11 lines
201 B
C#
11 lines
201 B
C#
using Model.Entity;
|
|
|
|
namespace Services.Immortal;
|
|
|
|
public class EntityService : IEntityService
|
|
{
|
|
public List<EntityModel> GetEntities()
|
|
{
|
|
throw new NotImplementedException();
|
|
}
|
|
} |