mirror of
https://github.com/morbalint/kemkas.git
synced 2026-07-17 19:03:46 +00:00
41e894cd42
2e is hidden behind url navigation hiding, so hoping that nobody found it yet. Note: DB migration make this commit a bit risky!
18 lines
373 B
C#
18 lines
373 B
C#
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;
|
|
}
|
|
}
|