You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
15 lines
364 B
C#
15 lines
364 B
C#
6 months ago
|
namespace DS.WMS.Core.Sys.Dtos;
|
||
9 months ago
|
/// <summary>
|
||
|
/// 多语言导入设置
|
||
|
/// </summary>
|
||
|
public class ImportLanguageSetReq
|
||
|
{
|
||
|
/// <summary>
|
||
|
/// 多语言类型 CN EN
|
||
|
/// </summary>
|
||
|
public string LanguageType { get; set; }
|
||
|
/// <summary>
|
||
|
/// 多语言设置
|
||
|
/// </summary>
|
||
|
public List<MultiLanguageConstRes> LanguageSets { get; set; }
|
||
|
}
|