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

21 lines
568 B
C#
Raw Normal View History

2018-08-05 23:11:15 +01:00
using System.Collections.Generic;
namespace Cicm.Database.Models
{
2018-08-06 21:27:14 +01:00
public class Resolution
2018-08-05 23:11:15 +01:00
{
2018-08-06 21:27:14 +01:00
public Resolution()
2018-08-05 23:11:15 +01:00
{
ResolutionsByGpu = new HashSet<ResolutionsByGpu>();
}
public int Id { get; set; }
public int Width { get; set; }
public int Height { get; set; }
public long? Colors { get; set; }
public long? Palette { get; set; }
public sbyte Chars { get; set; }
2018-08-06 23:33:39 +01:00
public virtual ICollection<ResolutionsByGpu> ResolutionsByGpu { get; set; }
2018-08-05 23:11:15 +01:00
}
}