19 lines
438 B
C#
19 lines
438 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 Productgroup
|
|
{
|
|
public int Id { get; set; }
|
|
|
|
public string Name { get; set; }
|
|
|
|
public sbyte IsArchived { get; set; }
|
|
|
|
public int Index { get; set; }
|
|
|
|
public virtual Product Product { get; set; }
|
|
} |