mirror of
https://github.com/morbalint/kemkas-backend.git
synced 2026-07-17 21:23:46 +00:00
18 lines
371 B
C#
18 lines
371 B
C#
using Kemkas.Web.ViewModels;
|
|
|
|
namespace Kemkas.Web.Services.FirstEdition.Character;
|
|
|
|
public interface ICharacterValidationService
|
|
{
|
|
public string? Validate(Karakter1eDto dto);
|
|
}
|
|
|
|
public class CharacterValidationService : ICharacterValidationService
|
|
{
|
|
public string? Validate(Karakter1eDto dto)
|
|
{
|
|
// TODO: add validation!!
|
|
return null;
|
|
}
|
|
}
|