You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

27 lines
641 B

using Microsoft.EntityFrameworkCore;
using System;
using System.Collections.Generic;
using System.ComponentModel.DataAnnotations;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace Entity_Framework.Entity
{
public class Tours
{
public long Id { get; set; }
public string Temps { get; set; }
public int Numero { get; set; }
// -------------------- Relation -------------------- //
// Points
public List<Points> Points { get; set; }
// Courses
public long IdSession { get; set; }
public Sessions Session { get; set; }
}
}