pwt-final-countdown/Models/ProcessorViewModel.cs
surtur d63715392e
All checks were successful
continuous-integration/drone/push Build is passing
initial commit
2020-12-17 14:53:05 +01:00

10 lines
181 B
C#

using System.Collections.Generic;
namespace pwt_final_countdown.Models
{
public class ProcessorViewModel
{
public IList<Processor> Processors { get; set; }
}
}