PIbd23_Ivanova_Yakobchuk_Co.../LawCompany/LawCompanyDatabaseImplement/Models/HearingLawyer.cs
2024-05-01 17:41:34 +04:00

15 lines
421 B
C#

using System.ComponentModel.DataAnnotations;
namespace LawCompanyDatabaseImplement.Models
{
public class HearingLawyer
{
public int Id { get; set; }
[Required]
public int HearingId { get; set; }
[Required]
public int LawyerId { get; set; }
public virtual Hearing Hearing { get; set; } = new();
public virtual Lawyer Lawyer { get; set; } = new();
}
}