...
This commit is contained in:
@@ -19,8 +19,8 @@ namespace Hushian.Domain.Entites
|
||||
#endregion
|
||||
|
||||
#region Fild
|
||||
public string Title { get; set; }
|
||||
public ConversationStatus Status { get; set; }
|
||||
public ConversationStatus Status { get; set; }
|
||||
= ConversationStatus.InProgress;
|
||||
public DateTime? FinishedDateTime { get; set; }
|
||||
public DateTime Cdatetime
|
||||
{ get; set; } = DateTime.Now;
|
||||
@@ -33,8 +33,8 @@ namespace Hushian.Domain.Entites
|
||||
public User User { get; set; }
|
||||
[ForeignKey("GroupID")]
|
||||
public Group? Group { get; set; }
|
||||
public ICollection<ConversationItem> conversationItems { get; set; }
|
||||
= new List<ConversationItem>();
|
||||
public ICollection<ConversationResponse> ConversationResponses { get; set; }
|
||||
= new List<ConversationResponse>();
|
||||
#endregion
|
||||
}
|
||||
}
|
||||
|
@@ -9,12 +9,12 @@ using System.Threading.Tasks;
|
||||
|
||||
namespace Hushian.Domain.Entites
|
||||
{
|
||||
public class ConversationItem : BaseEntity
|
||||
public class ConversationResponse : BaseEntity
|
||||
{
|
||||
#region Key
|
||||
public int ID { get; set; }
|
||||
public int ConversationID { get; set; }
|
||||
public string? ExperID { get; set; }
|
||||
public int? ExperID { get; set; }
|
||||
#endregion
|
||||
|
||||
#region Fild
|
Reference in New Issue
Block a user