mirror of
https://github.com/aaru-dps/Aaru.git
synced 2026-07-09 18:26:49 +00:00
13 lines
322 B
C#
13 lines
322 B
C#
using System.ComponentModel.DataAnnotations;
|
|
|
|
namespace DiscImageChef.Server.Models
|
|
{
|
|
public class OperatingSystem
|
|
{
|
|
[Key]
|
|
public int Id { get; set; }
|
|
public string Name { get; set; }
|
|
public string Version { get; set; }
|
|
public long Count { get; set; }
|
|
}
|
|
} |