12 lines
238 B
C#
12 lines
238 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Text;
|
|
|
|
namespace WCS.Model.ApiModel.MatBaseInfo
|
|
{
|
|
public class PrintedMatInfoRequest : RequestBase
|
|
{
|
|
public List<int> PrintedMatInfoIds { get; set; }
|
|
}
|
|
}
|