16 lines
378 B
C#
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; }
|
|
}
|
|
}
|