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.
27 lines
660 B
27 lines
660 B
using System.ComponentModel.DataAnnotations;
|
|
using Connected.Data;
|
|
using Connected.ServiceModel;
|
|
|
|
namespace Connected.Logistics.Types.Warehouses;
|
|
public class InsertWarehouseArgs : Dto
|
|
{
|
|
[Required, MaxLength(128)]
|
|
public string Name { get; set; } = default!;
|
|
|
|
[Required, MaxLength(32)]
|
|
public string Code { get; set; } = default!;
|
|
|
|
public Status Status { get; set; } = Status.Disabled;
|
|
}
|
|
|
|
public class UpdateWarehouseArgs : PrimaryKeyArgs<int>
|
|
{
|
|
[Required, MaxLength(128)]
|
|
public string Name { get; set; } = default!;
|
|
|
|
[Required, MaxLength(32)]
|
|
public string Code { get; set; } = default!;
|
|
|
|
public Status Status { get; set; } = Status.Disabled;
|
|
}
|