28 lines
932 B
C#
28 lines
932 B
C#
using CPRNIMS.Infrastructure.Entities.Common;
|
|
using System;
|
|
using System.Collections.Generic;
|
|
using System.ComponentModel.DataAnnotations;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Text.Json.Serialization;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace CPRNIMS.Infrastructure.Dto.Items
|
|
{
|
|
public class ItemCodeDto : CommonProperties
|
|
{
|
|
public long ItemCodeId { get; set; }
|
|
public int DepartmentId { get; set; }
|
|
public string? Department { get; set; }
|
|
public string? ItemCategoryName { get; set; }
|
|
public byte RequestTypeId { get; set; }
|
|
public short ItemCategoryId { get; set; }
|
|
public string? ItemName { get; set; }
|
|
public string? ItemDescription { get; set; }
|
|
public string? UserId { get; set; }
|
|
public string? FileName { get; set; }
|
|
public short Status { get; set; }
|
|
public bool IsActive { get; set; }
|
|
}
|
|
}
|