Files
FA_WEB/FaKrosnoEfDataModel/Entities/Product.cs
Piotr Kus 0eaf941021 * Added maintaining Products
* Extended DataModels
* Extended API
2025-03-29 21:37:36 +01:00

9 lines
234 B
C#

namespace FaKrosnoEfDataModel.Entities;
public class Product : EntityBase
{
public int ID { get; set; }
public int RecipientID { get; set; }
public string RecipientIdx { get; set; }
public string FaIdx { get; set; }
}