enotaryo-landing/EnotaryoPH/EnotaryoPH.Data/Entities/LawyerVideoConferenceParticipant.cs

38 lines
1.2 KiB
C#

using System.ComponentModel.DataAnnotations.Schema;
namespace EnotaryoPH.Data.Entities
{
[Table("LawyerVideoConferenceParticipants")]
public class LawyerVideoConferenceParticipant
{
[Column("CreatedOn")]
public DateTime? CreatedOn { get; set; }
[Column("LawyerVideoConferenceParticipant_UID")]
public Guid? LawyerVideoConferenceParticipant_UID { get; set; }
[Column("LawyerVideoConferenceParticipantID")]
public int LawyerVideoConferenceParticipantID { get; set; }
[ForeignKey("LawyerVideoConferenceScheduleID")]
public LawyerVideoConferenceSchedule LawyerVideoConferenceSchedule { get; set; }
[Column("LawyerVideoConferenceScheduleID")]
public int LawyerVideoConferenceScheduleID { get; set; }
[Column("MeetingRoomTokenID")]
public string? MeetingRoomTokenID { get; set; }
[Column("MeetingRoomUserID")]
public string? MeetingRoomUserID { get; set; }
[ForeignKey("ParticipantID")]
public User Participant { get; set; }
[Column("ParticipantID")]
public int? ParticipantID { get; set; }
[Column("Status")]
public string? Status { get; set; }
}
}