22 lines
693 B
C#
22 lines
693 B
C#
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; }
|
|
}
|
|
}
|