new VideoRecording entity
This commit is contained in:
parent
3129d90318
commit
9e61c29b94
@ -5,12 +5,6 @@ namespace EnotaryoPH.Data.Entities
|
|||||||
[Table("LawyerVideoConferenceSchedule")]
|
[Table("LawyerVideoConferenceSchedule")]
|
||||||
public class LawyerVideoConferenceSchedule
|
public class LawyerVideoConferenceSchedule
|
||||||
{
|
{
|
||||||
[Column("ServerCallID")]
|
|
||||||
public string? ServerCallID { get; set; }
|
|
||||||
|
|
||||||
[Column("RecordingID")]
|
|
||||||
public string? RecordingID { get; set; }
|
|
||||||
|
|
||||||
[Column("CreatedOn")]
|
[Column("CreatedOn")]
|
||||||
public DateTime? CreatedOn { get; set; }
|
public DateTime? CreatedOn { get; set; }
|
||||||
|
|
||||||
@ -40,10 +34,18 @@ namespace EnotaryoPH.Data.Entities
|
|||||||
[Column("MeetingRoomUserID")]
|
[Column("MeetingRoomUserID")]
|
||||||
public string? MeetingRoomUserID { get; set; }
|
public string? MeetingRoomUserID { get; set; }
|
||||||
|
|
||||||
|
[Column("RecordingID")]
|
||||||
|
public string? RecordingID { get; set; }
|
||||||
|
|
||||||
|
[Column("ServerCallID")]
|
||||||
|
public string? ServerCallID { get; set; }
|
||||||
|
|
||||||
[Column("Status")]
|
[Column("Status")]
|
||||||
public string? Status { get; set; }
|
public string? Status { get; set; }
|
||||||
|
|
||||||
[Column("TransactionID")]
|
[Column("TransactionID")]
|
||||||
public int TransactionID { get; set; }
|
public int TransactionID { get; set; }
|
||||||
|
|
||||||
|
public VideoRecording VideoRecording { get; set; }
|
||||||
}
|
}
|
||||||
}
|
}
|
32
EnotaryoPH/EnotaryoPH.Data/Entities/VideoRecording.cs
Normal file
32
EnotaryoPH/EnotaryoPH.Data/Entities/VideoRecording.cs
Normal file
@ -0,0 +1,32 @@
|
|||||||
|
using System.ComponentModel.DataAnnotations.Schema;
|
||||||
|
|
||||||
|
namespace EnotaryoPH.Data.Entities
|
||||||
|
{
|
||||||
|
[Table("VideoRecordings")]
|
||||||
|
public class VideoRecording
|
||||||
|
{
|
||||||
|
[Column("CreatedOn")]
|
||||||
|
public DateTime? CreatedOn { get; set; }
|
||||||
|
|
||||||
|
[Column("LocationType")]
|
||||||
|
public string? LocationType { get; set; }
|
||||||
|
|
||||||
|
[Column("Metadata")]
|
||||||
|
public string? Metadata { get; set; }
|
||||||
|
|
||||||
|
[Column("Path")]
|
||||||
|
public string? Path { get; set; }
|
||||||
|
|
||||||
|
[ForeignKey("VideoConferenceScheduleID")]
|
||||||
|
public LawyerVideoConferenceSchedule VideoConferenceSchedule { get; set; }
|
||||||
|
|
||||||
|
[Column("VideoConferenceScheduleID")]
|
||||||
|
public int VideoConferenceScheduleID { get; set; }
|
||||||
|
|
||||||
|
[Column("VideoRecording_UID")]
|
||||||
|
public Guid? VideoRecording_UID { get; set; }
|
||||||
|
|
||||||
|
[Column("VideoRecordingID")]
|
||||||
|
public int VideoRecordingID { get; set; }
|
||||||
|
}
|
||||||
|
}
|
@ -37,5 +37,6 @@ namespace EnotaryoPH.Data
|
|||||||
public DbSet<TransactionSignatory> TransactionSignatories { get; set; }
|
public DbSet<TransactionSignatory> TransactionSignatories { get; set; }
|
||||||
public DbSet<TransactionSignatoryDeclineReason> TransactionSignatoryDeclineReasons { get; set; }
|
public DbSet<TransactionSignatoryDeclineReason> TransactionSignatoryDeclineReasons { get; set; }
|
||||||
public DbSet<User> Users { get; set; }
|
public DbSet<User> Users { get; set; }
|
||||||
|
public DbSet<VideoRecording> VideoRecordings { get; set; }
|
||||||
}
|
}
|
||||||
}
|
}
|
Loading…
x
Reference in New Issue
Block a user