Files
Complex/Complex.Domain/Entities/Chat.cs
alireza 861a98668e feat: add Auditable attribute to Chat entity and create migration
Added [Auditable] attribute to the Chat entity to enable auditing functionality. Created a new migration (AddAuditableToChat) that adds InsertTime, IsRemoved, and RemoveTime columns to the Chat table, along with the necessary database schema updates to support the auditing behavior.
2026-06-11 19:42:44 +03:30

14 lines
324 B
C#

using Complex.Domain.Commons;
namespace Complex.Domain.Entities
{
[Auditable]
public class Chat:BaseEntity<long>
{
public Guid ComplexId { set; get; }
public string PersonMobileNumber { set; get; }
public string Body { set; get; }
public byte ChatTypeId { set; get; }
}
}