Files

11 lines
247 B
C#

namespace PyroFetes.DTO.Provider.Response;
public class GetProviderDto
{
public int Id { get; set; }
public decimal Price { get; set; }
public int ProviderTypeId { get; set; }
public string? ProviderType { get; set; }
}