Renamed project files and folders

This commit is contained in:
2020-02-26 19:10:46 +00:00
parent e133798583
commit f5b199e483
1417 changed files with 109 additions and 109 deletions

View File

@@ -0,0 +1,10 @@
namespace DiscImageChef.Database.Models
{
public abstract class BaseOperatingSystem : BaseModel<int>
{
public string Name { get; set; }
public string Version { get; set; }
public bool Synchronized { get; set; }
public ulong Count { get; set; }
}
}