mirror of
https://github.com/morbalint/kemkas-backend.git
synced 2026-07-18 05:33:47 +00:00
initial
This commit is contained in:
@@ -0,0 +1,17 @@
|
||||
using Kemkas.Web.ViewModels;
|
||||
|
||||
namespace Kemkas.Web.Services.FirstEdition.Character;
|
||||
|
||||
public interface ICharacterValidationService
|
||||
{
|
||||
public string? Validate(Character1eDto dto);
|
||||
}
|
||||
|
||||
public class CharacterValidationService : ICharacterValidationService
|
||||
{
|
||||
public string? Validate(Character1eDto dto)
|
||||
{
|
||||
// TODO: add validation!!
|
||||
return null;
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user