Merge branch 'develop' into working

This commit is contained in:
Suphonchai Phoonsawat 2024-07-01 21:54:54 +07:00
commit 320fb3386e
6 changed files with 92 additions and 88 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;
}
}