using WebMinRouteGroup.Data; namespace WebMinRouteGroup; public static class Utilities { public static Dictionary IsValid(TodoDto td) { Dictionary errors = new(); if (string.IsNullOrEmpty(td.Title)) { errors.TryAdd("todo.name.errors", new[] { "Name is empty" }); } if (td.Title.Length < 3) { errors.TryAdd("todo.name.errors", new[] { "Name length < 3" }); } return errors; } }