You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
24 lines
480 B
24 lines
480 B
2 years ago
|
using System;
|
||
|
using System.Collections.Generic;
|
||
|
using System.Linq;
|
||
|
using System.Web;
|
||
|
|
||
|
namespace Warehouse.Models.DTO
|
||
|
{
|
||
|
public class MaterialCodeDto
|
||
|
{
|
||
|
public string partnumber { get; set; }
|
||
|
public string parttype { get; set; }
|
||
|
public string description { get; set; }
|
||
|
public bool flag { get; set; }
|
||
|
}
|
||
|
|
||
|
public class PartTypeDto
|
||
|
{
|
||
|
public string parttype { get; set; }
|
||
|
public string description { get; set; }
|
||
|
public byte flag { get; set; }
|
||
|
}
|
||
|
|
||
|
}
|