Files
marechai/Cicm.Database/Models/ResolutionsByGpu.cs

12 lines
343 B
C#
Raw Normal View History

2018-08-05 23:11:15 +01:00
namespace Cicm.Database.Models
{
public class ResolutionsByGpu
{
public int Gpu { get; set; }
public int Resolution { get; set; }
public long Id { get; set; }
public Gpus GpuNavigation { get; set; }
public Resolutions ResolutionNavigation { get; set; }
}
}