12 lines
197 B
C#
12 lines
197 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
|
|
namespace WinFormsApp4.Models;
|
|
|
|
public partial class Storage
|
|
{
|
|
public int IdStorage { get; set; }
|
|
|
|
public sbyte Quantity { get; set; }
|
|
}
|