Add chess (Oh my gosh big commit)

This commit is contained in:
jheaps
2025-03-27 13:54:07 -06:00
parent 2edc40fb99
commit fbed5ae789
41 changed files with 1943 additions and 71 deletions
+10
View File
@@ -0,0 +1,10 @@
namespace JoshHeaps.Net.Models;
public class MoveResultDto
{
public bool Success { get; set; }
public string Message { get; set; }
public bool IsCheck { get; set; }
public bool IsCheckmate { get; set; }
public bool IsStalemate { get; set; }
}