18 lines
378 B
C#
18 lines
378 B
C#
namespace MiGu.Server.SimpleFields;
|
|||
|
|
|
||
|
|
public sealed record SimpleFieldRequest(
|
||
|
|
Guid? Id,
|
||
|
|
string CarType,
|
||
|
|
string FieldType,
|
||
|
|
string Key,
|
||
|
|
string? Value,
|
||
|
|
string? DataType,
|
||
|
|
string? Chinese,
|
||
|
|
string? English,
|
||
|
|
string? Other,
|
||
|
|
bool IsDefault);
|
||
|
|
|
||
|
|
public sealed record SimpleFieldBatchRequest(
|
||
|
|
bool ReplaceAll,
|
||
|
|
List<SimpleFieldRequest> Items);
|