PartnerAddressFieldsDto.cs 570 Bytes
namespace FoodLabeling.Application.Contracts.Dtos.Partner;

/// <summary>
/// 合作伙伴地址字段(与 location 门店地址命名对齐)
/// </summary>
public class PartnerAddressFieldsDto
{
    public string? Street { get; set; }

    public string? City { get; set; }

    /// <summary>
    /// 州/省代码(如 NY)。JSON 字段名为 <c>stateCode</c>,与启用状态 <c>state</c>(boolean)不同。
    /// </summary>
    public string? StateCode { get; set; }

    public string? Country { get; set; }

    public string? ZipCode { get; set; }
}