ContactForm.cs 652 B

12345678910111213141516171819202122232425262728293031
  1. using System;
  2. using System.Collections.Generic;
  3. namespace Database.Database;
  4. public partial class ContactForm
  5. {
  6. public int Id { get; set; }
  7. public string FullName { get; set; } = null!;
  8. public string Email { get; set; } = null!;
  9. public string? PhoneNumber { get; set; }
  10. public string? Subject { get; set; }
  11. public string Message { get; set; } = null!;
  12. public byte? Status { get; set; }
  13. public int? AssignedTo { get; set; }
  14. public string? AdminNotes { get; set; }
  15. public DateTime? RepliedAt { get; set; }
  16. public string? IpAddress { get; set; }
  17. public DateTime? CreatedDate { get; set; }
  18. }