practicekea_backend/microservices/_layers/domain/ModelsOld/ContactLogs.cs

22 lines
693 B
C#
Raw Normal View History

2024-12-02 13:24:34 +00:00
using System;
using System.Collections.Generic;
namespace OnlineAssessment.Domain.Models
{
public partial class ContactLogs
{
public int Id { get; set; }
public DateTime? ContactDate { get; set; }
public string ContactBy { get; set; }
public string ContactFor { get; set; }
public string EmailTo { get; set; }
public string EmailFrom { get; set; }
public string EmailSubject { get; set; }
public string EmailMessage { get; set; }
public DateTime? ReplyDate { get; set; }
public int? ReplyBy { get; set; }
public string Comment { get; set; }
public bool? IsActive { get; set; }
}
}