DAYAN MANRIQUE
namespace PlatziPooDemo1
{
public class Portatil
{
public string Color { get; set; }
public string Brand { get; set; }
public double ScreenSize { get; set; }
public string Model { get; set; }
public string Processor { get; set; }
public int RAM { get; set; }
public int Storage { get; set; }
public void showSpecs()
{
Console.WriteLine($"Brand: {Brand}");
Console.WriteLine($"Model: {Model}");
Console.WriteLine($"Color: {Color}");
Console.WriteLine($"Screen Size: {ScreenSize} inches");
Console.WriteLine($"Processor: {Processor}");
Console.WriteLine($"RAM: {RAM} GB");
Console.WriteLine($"Storage: {Storage} GB");
}
}
} esta es mi clase.
