12 lines
329 B
C#
12 lines
329 B
C#
namespace FaKrosnoEfDataModel.Dtos;
|
|
|
|
public class ProductDto : DtoBase
|
|
{
|
|
public int ID { get; set; }
|
|
public int RecipientID { get; set; }
|
|
public string RecipientIdx { get; set; }
|
|
public string FaIdx { get; set; }
|
|
public string RecipientName { get; set; }
|
|
|
|
public RecipientDto Recipient { get; set; }
|
|
} |