Use base model.

This commit is contained in:
2019-12-03 21:08:14 +00:00
parent 9b916b64df
commit e380126937
15 changed files with 24 additions and 67 deletions

View File

@@ -30,15 +30,10 @@
// Copyright © 2011-2019 Natalia Portillo
// ****************************************************************************/
using System.ComponentModel.DataAnnotations;
namespace DiscImageChef.Server.Models
{
public class OperatingSystem
public class OperatingSystem : BaseModel<int>
{
[Key]
public int Id { get; set; }
public string Name { get; set; }
public string Version { get; set; }
public long Count { get; set; }