Migrate to .NET Core 3.1.

This commit is contained in:
2020-05-21 05:01:35 +01:00
parent e3ebd41291
commit 880f66df1a
12 changed files with 67 additions and 79 deletions

View File

@@ -35,7 +35,7 @@ namespace Marechai.Areas.Admin.Models
public class GpusByMachineViewModel : BaseViewModel<long>
{
[DisplayName("GPU")]
public string Gpu;
public string Machine;
public string Gpu { get; set; }
public string Machine { get; set; }
}
}