Files
LaDOSE/LaDOSE.Src/LaDOSE.Service/Interface/IGameService.cs

10 lines
169 B
C#
Raw Normal View History

2018-10-06 14:16:42 +02:00
using System.Collections.Generic;
using LaDOSE.Entity;
namespace LaDOSE.Business.Interface
{
public interface IGameService : IBaseService<Game>
2018-10-06 14:16:42 +02:00
{
}
}