11 lines
323 B
C#
11 lines
323 B
C#
namespace AMREZ.EOP.Contracts.DTOs.MasterData.ComplianceStatus;
|
|
|
|
public sealed record ComplianceStatusCreateRequest(
|
|
string Code,
|
|
string Name,
|
|
Dictionary<string, string>? NameI18n,
|
|
Dictionary<string, object>? Meta,
|
|
string Scope = "tenant",
|
|
Guid? OverridesGlobalId = null,
|
|
bool IsActive = true
|
|
); |