17 lines
324 B
C#
Raw Permalink Normal View History

2025-11-18 15:08:03 +08:00
using Microsoft.EntityFrameworkCore;
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace AiSportsMicrospaceDB.Entities
{
[Owned]
public class Point
{
public double X { get; set; }
public double Y { get; set; }
}
}