12 lines
323 B
C#
12 lines
323 B
C#
// backend/Models/MemoriaRam.cs
|
|
namespace Inventario.API.Models
|
|
{
|
|
public class MemoriaRam
|
|
{
|
|
public int Id { get; set; }
|
|
public string? PartNumber { get; set; }
|
|
public string? Fabricante { get; set; }
|
|
public int Tamano { get; set; }
|
|
public int? Velocidad { get; set; }
|
|
}
|
|
} |