Initial commit
Initial commit til Git. V2 er deployed
This commit is contained in:
25
PointOfSale/Pos.Api/Pos.Api.Database/Models/Product.cs
Normal file
25
PointOfSale/Pos.Api/Pos.Api.Database/Models/Product.cs
Normal file
@@ -0,0 +1,25 @@
|
||||
// <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 Product
|
||||
{
|
||||
public int Id { get; set; }
|
||||
|
||||
public string Name { get; set; }
|
||||
|
||||
public decimal Price { get; set; }
|
||||
|
||||
public string Description { get; set; }
|
||||
|
||||
public int ProductGroupId { get; set; }
|
||||
|
||||
public sbyte IsArchived { get; set; }
|
||||
|
||||
public int Index { get; set; }
|
||||
|
||||
public virtual Productgroup IdNavigation { get; set; }
|
||||
}
|
||||
Reference in New Issue
Block a user