24 lines
579 B
C#
24 lines
579 B
C#
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; }
|
|
}
|
|
|
|
}
|