17 lines
382 B
C#
17 lines
382 B
C#
// <auto-generated> This file has been auto generated by EF Core Power Tools. </auto-generated>
|
|
#nullable disable
|
|
using System;
|
|
using System.Collections.Generic;
|
|
|
|
namespace Pos.Api.Database.Models;
|
|
|
|
public partial class Payment
|
|
{
|
|
public int Id { get; set; }
|
|
|
|
public int SaleId { get; set; }
|
|
|
|
public decimal Amount { get; set; }
|
|
|
|
public string Type { get; set; }
|
|
} |