24 lines
689 B
C#
24 lines
689 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.ComponentModel.DataAnnotations;
|
|
using System.ComponentModel.DataAnnotations.Schema;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace CPRNIMS.Infrastructure.Entities.Purchasing
|
|
{
|
|
[Table("ProjectCodes")]
|
|
public class ProjectCodes
|
|
{
|
|
[Key]
|
|
public int ProjectCodeId { get; set; }
|
|
public string? ProjectCode { get; set; }
|
|
public string? ProjectName { get; set; }
|
|
public int MaxDays { get; set; }
|
|
public string? DeliveryAddress { get; set; }
|
|
public string? StatusName { get; set; }
|
|
public bool IsActive { get; set; }
|
|
}
|
|
}
|