26 lines
608 B
C#
26 lines
608 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 JumpLongPoints {
|
|
// ✅ 主键
|
|
public int Id { get; set; }
|
|
public Point TopPoint1 { get; set; }
|
|
public Point TopPoint2 { get; set; }
|
|
public Point TopPoint3 { get; set; }
|
|
public Point BottomPoint1 { get; set; }
|
|
public Point BottomPoint2 { get; set; }
|
|
public Point BottomPoint3 { get; set; }
|
|
}
|
|
|
|
|
|
|
|
}
|