24 lines
579 B
C#
Raw Normal View History

2025-11-18 15:08:03 +08:00
using Microsoft.EntityFrameworkCore;
using System;
using System.Collections;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace AiSportsMicrospaceDB.Entities
{
public class SixGroupPoints {
// ✅ 主键
public int Id { get; set; }
public Point point1 { get; set; }
public Point point2 { get; set; }
public Point point3 { get; set; }
public Point point4 { get; set; }
public Point point5 { get; set; }
public Point point6 { get; set; }
}
}