| 12345678910111213141516171819202122232425262728293031 |
- using System;
- using System.Collections.Generic;
- namespace Database.Database;
- public partial class ContactForm
- {
- public int Id { get; set; }
- public string FullName { get; set; } = null!;
- public string Email { get; set; } = null!;
- public string? PhoneNumber { get; set; }
- public string? Subject { get; set; }
- public string Message { get; set; } = null!;
- public byte? Status { get; set; }
- public int? AssignedTo { get; set; }
- public string? AdminNotes { get; set; }
- public DateTime? RepliedAt { get; set; }
- public string? IpAddress { get; set; }
- public DateTime? CreatedDate { get; set; }
- }
|