add characters controller and repository

This commit is contained in:
StevanFreeborn
2022-06-24 09:58:35 -05:00
parent 995035ad22
commit 21d9fdab16
6 changed files with 155 additions and 1 deletions
@@ -0,0 +1,6 @@
namespace server.Persistence.Repositories
{
public class CharacterRepository : ICharacterRepository
{
}
}
@@ -0,0 +1,13 @@
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace server.Persistence.Repositories
{
public interface ICharacterRepository
{
}
}