8 lines
216 B
C#
8 lines
216 B
C#
namespace AMREZ.EOP.Contracts.DTOs.MasterData.Country;
|
|
|
|
public sealed record CountryUpdateRequest(
|
|
string Name,
|
|
Dictionary<string, string>? NameI18n,
|
|
Dictionary<string, object>? Meta,
|
|
bool IsActive
|
|
); |