no message

This commit is contained in:
Kittapath 2024-07-01 16:11:19 +07:00
parent 2678b7fc59
commit 6554971c3c
4 changed files with 87 additions and 83 deletions

View file

@ -2,8 +2,8 @@
{
public class KeyValueItemResponse
{
public Guid Id { get; set; } = Guid.Empty;
public Guid? Id { get; set; } = Guid.Empty;
public string Name { get; set; } = string.Empty;
public string? Name { get; set; } = string.Empty;
}
}