inventory_mobile/pstw_centralizesystem/Areas/IT/Models/ItRequestEmail.cs
2025-12-15 15:35:35 +08:00

25 lines
636 B
C#

using System.ComponentModel.DataAnnotations;
using System.ComponentModel.DataAnnotations.Schema;
namespace PSTW_CentralSystem.Areas.IT.Models
{
[Table("it_request_emails")]
public class ItRequestEmail
{
[Key]
public int Id { get; set; }
public int ItRequestId { get; set; }
[ForeignKey("ItRequestId")]
public ItRequest? Request { get; set; }
[MaxLength(50)]
public string? Purpose { get; set; } // New / Replacement / Additional
[MaxLength(200)]
public string? ProposedAddress { get; set; }
public string? Notes { get; set; }
}
}