Serialize converters were added
This commit is contained in:
23
StructureHelperCommon/Models/Projects/FileVersion.cs
Normal file
23
StructureHelperCommon/Models/Projects/FileVersion.cs
Normal file
@@ -0,0 +1,23 @@
|
||||
using System;
|
||||
using System.Collections.Generic;
|
||||
using System.Linq;
|
||||
using System.Text;
|
||||
using System.Threading.Tasks;
|
||||
|
||||
namespace StructureHelperCommon.Models.Projects
|
||||
{
|
||||
public class FileVersion : IFileVersion
|
||||
{
|
||||
public Guid Id { get; }
|
||||
public int VersionNumber { get; set; }
|
||||
public int SubVersionNumber { get; set; }
|
||||
public FileVersion(Guid id)
|
||||
{
|
||||
Id = id;
|
||||
}
|
||||
public FileVersion() : this(Guid.NewGuid())
|
||||
{
|
||||
|
||||
}
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user