praktikum4/Domain/PersonCources.cs

20 lines
405 B
C#

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace Domain
{
public class PersonCources
{
public int PersonCourcesId { get; set; }
public int PersonId { get; set; }
public Person Person { get; set; }
public int CourceId { get; set; }
public Cource Cource { get; set; }
}
}