drinkrate/DrinkRateAPI/ApiModels/ProductCompanyTableCouple/ProductCompanyTableCouplePostResponse.cs

9 lines
No EOL
307 B
C#

namespace DrinkRateAPI.ApiModels.ProductCompanyTableCouple;
public class ProductCompanyTableCouplePostResponse
{
public string ProductTableName { get; set; }
public string ProductTableId { get; set; }
public string CompanyTableName { get; set; }
public string CompanyTableId { get; set; }
}