Set chars in resolution to bool.

This commit is contained in:
2019-05-19 01:07:08 +01:00
parent 0e6fc2e7f2
commit f6b236cd10
2 changed files with 2 additions and 2 deletions

View File

@@ -44,7 +44,7 @@ namespace Cicm.Database.Models
public int Height { get; set; }
public long? Colors { get; set; }
public long? Palette { get; set; }
public sbyte Chars { get; set; }
public bool Chars { get; set; }
public virtual ICollection<ResolutionsByGpu> ResolutionsByGpu { get; set; }
}