mirror of
https://github.com/claunia/marechai.git
synced 2025-12-16 19:14:25 +00:00
12 lines
343 B
C#
12 lines
343 B
C#
|
|
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; }
|
|||
|
|
}
|
|||
|
|
}
|