We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 837c891 commit 973029dCopy full SHA for 973029d
1 file changed
src/Codebreaker.ViewModels/Models/Extensions/FieldExtensions.cs
@@ -0,0 +1,7 @@
1
+namespace Codebreaker.ViewModels.Models.Extensions;
2
+
3
+internal static class FieldExtensions
4
+{
5
+ public static IEnumerable<string> Serialize(this IEnumerable<Field> fields) =>
6
+ fields.Select(f => f.Serialize());
7
+}
0 commit comments