10 lines
329 B
C#
10 lines
329 B
C#
namespace Tnb.EquipMgr.Entities.Dto
|
|
{
|
|
public class EquipWorkshopChangeInput
|
|
{
|
|
public string equip_id { get; set; } = string.Empty;
|
|
public string new_workshop_id { get; set; } = string.Empty;
|
|
public string? new_installation_location { get; set; }
|
|
public string? remark { get; set; }
|
|
}
|
|
} |