Index: Application/Ringtoets/src/Application.Ringtoets.Storage/DbContext/VersionEntity.cs =================================================================== diff -u -ra26f8ba0067df146397c8505ec9dc98dda1c94fd -rec9f45c99b375218d00a89df1ac1e187ebf54070 --- Application/Ringtoets/src/Application.Ringtoets.Storage/DbContext/VersionEntity.cs (.../VersionEntity.cs) (revision a26f8ba0067df146397c8505ec9dc98dda1c94fd) +++ Application/Ringtoets/src/Application.Ringtoets.Storage/DbContext/VersionEntity.cs (.../VersionEntity.cs) (revision ec9f45c99b375218d00a89df1ac1e187ebf54070) @@ -28,16 +28,15 @@ // //------------------------------------------------------------------------------ +using System; + namespace Application.Ringtoets.Storage.DbContext { - using System; - using System.Collections.Generic; - public partial class VersionEntity { public long VersionId { get; set; } public string Version { get; set; } - public System.DateTime Timestamp { get; set; } + public DateTime Timestamp { get; set; } public byte[] FingerPrint { get; set; } } -} +} \ No newline at end of file