16 lines
368 B
C#
16 lines
368 B
C#
using System.ComponentModel.DataAnnotations;
|
|
|
|
namespace LawFirmDatabaseImplement.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();
|
|
}
|
|
}
|