Rob / Application /DTOs /PartnerDTOs /PartnerResponseDTO.cs
danylokhodus's picture
Initial clean backend commit
70556b7
Raw
History Blame Contribute Delete
356 Bytes
namespace Application.DTOs.PartnerDTOs
{
public class PartnerResponseDTO
{
public int Id { get; set; }
public string Name { get; set; }
public string ContactPerson { get; set; }
public string PhoneNumber { get; set; }
public int NodeId { get; set; }
public string? LocationName { get; set; }
}
}