drinkrate/DrinkRateAPI/ApiModels/ProductCompanyTableCouple/ProductCompanyTableCouplePostResponse.cs
martinshoob b7677bc139 Create product-company table coupling, fix one-to-one relationship
Introduce a new entity to couple product and company tables.
2025-08-11 21:03:28 +02:00

9 lines
No EOL
294 B
C#

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