Add admin page for resolution by GPU.

This commit is contained in:
2019-05-19 15:26:59 +01:00
parent 8762cf2cbd
commit c0df1ed4b6
9 changed files with 414 additions and 2 deletions

View File

@@ -28,6 +28,8 @@
// Copyright © 2003-2018 Natalia Portillo
*******************************************************************************/
using System.ComponentModel;
namespace Cicm.Database.Models
{
public class ResolutionsByGpu
@@ -36,7 +38,8 @@ namespace Cicm.Database.Models
public int ResolutionId { get; set; }
public long Id { get; set; }
public virtual Gpu Gpu { get; set; }
[DisplayName("GPU")]
public virtual Gpu Gpu { get; set; }
public virtual Resolution Resolution { get; set; }
}
}