Files
LaDOSE/LaDOSE.Src/LaDOSE.Service/Interface/IGameService.cs
Darkstack 9a9d4c7053 Generic Service
JSON Reference loop
Events
2018-10-07 03:03:38 +02:00

10 lines
169 B
C#

using System.Collections.Generic;
using LaDOSE.Entity;
namespace LaDOSE.Business.Interface
{
public interface IGameService : IBaseService<Game>
{
}
}