19 lines
468 B
C#
19 lines
468 B
C#
|
using System;
|
|||
|
using System.Collections.Generic;
|
|||
|
using System.ComponentModel.DataAnnotations;
|
|||
|
using System.Linq;
|
|||
|
using System.Text;
|
|||
|
using System.Threading.Tasks;
|
|||
|
|
|||
|
namespace Syc.Basic.Web.WMS.Dtos.Position
|
|||
|
{
|
|||
|
public class PositionUpdateDto
|
|||
|
{
|
|||
|
public string Name { get; set; }
|
|||
|
public string Code { get; set; }
|
|||
|
public string Description { get; set; }
|
|||
|
public int Order { get; set; }
|
|||
|
public bool Status { get; set; }
|
|||
|
}
|
|||
|
}
|