Files
TaskHybrid/salesbook.Shared/Core/Dto/AutoCompleteAddressDTO.cs
2025-07-24 15:51:01 +02:00

12 lines
276 B
C#

using System.Text.Json.Serialization;
namespace salesbook.Shared.Core.Dto;
public class AutoCompleteAddressDTO
{
[JsonPropertyName("description")]
public string Description { get; set; }
[JsonPropertyName("placeId")]
public string PlaceId { get; set; }
}