feat: add signalr hub and github workflow

This commit is contained in:
2021-06-29 01:01:01 -04:00
parent daf4e9ef26
commit b547ea17e7
8 changed files with 265 additions and 1 deletions

View File

@@ -0,0 +1,14 @@
using System;
using System.Collections.Generic;
using System.Linq;
using System.Threading.Tasks;
namespace TetrisClone.WebApi.Model
{
public class Piece
{
public int X { get; set; }
public int Y { get; set; }
public PieceType Type { get; set; }
}
}