13 lines
325 B
C#
13 lines
325 B
C#
namespace AMREZ.EOP.Contracts.DTOs.MasterData.DocControlStatus;
|
|
|
|
public sealed record DocControlStatusResponse(
|
|
Guid Id,
|
|
string Scope,
|
|
string Code,
|
|
string Name,
|
|
Dictionary<string, string>? NameI18n,
|
|
Guid? OverridesGlobalId,
|
|
bool IsActive,
|
|
bool IsSystem,
|
|
Dictionary<string, object>? Meta
|
|
); |