Genesis Game Server Project Setup

This commit is contained in:
2026-03-13 12:37:59 +09:00
commit af40aa2b45
17 changed files with 595 additions and 0 deletions

View File

@@ -0,0 +1,9 @@
namespace GameServer.Models
{
public class ApiResponse<T>
{
public T? Data { get; set; } // 실제 데이터 (단일 객체 혹은 리스트)
public int? Count { get; set; } // 배열일 경우 개수 (선택사항)
public string Message { get; set; } = "Success";
}
}