using Microsoft.EntityFrameworkCore; using System; using System.Collections.Generic; using System.ComponentModel.DataAnnotations; using System.Linq; using System.Threading.Tasks; namespace UF.AssessmentProject.Model.Transaction { [Keyless] public class RequestMessage : Model.RequestMessage { public string partnerrefno { get; set; } public long totalamount { get; set; } public List<itemdetail> items { get; set; } } [Keyless] public class itemdetail { public string partneritemref { get; set; } public string name { get; set; } public int qty { get; set; } public long unitprice { get; set; } } public class ResponseMessage: Model.ResponseMessage { } }