Files
FA_WEB/FaKrosnoEfDataModel/Entities/Purchaser.cs
2025-01-24 13:37:01 +01:00

16 lines
378 B
C#

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace FaKrosnoEfDataModel.Entities
{
public class Purchaser : EntityBase
{
public string PurchaserCode { get; set; }
public string PurchaserDesc { get; set; }
public ICollection<Recipient> Recipients { get; set; }
}
}