aboutsummaryrefslogtreecommitdiff
path: root/src/Data/DevHive.Data.Models/Rating.cs
diff options
context:
space:
mode:
Diffstat (limited to 'src/Data/DevHive.Data.Models/Rating.cs')
-rw-r--r--src/Data/DevHive.Data.Models/Rating.cs4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/Data/DevHive.Data.Models/Rating.cs b/src/Data/DevHive.Data.Models/Rating.cs
index e1bedd2..13fdbce 100644
--- a/src/Data/DevHive.Data.Models/Rating.cs
+++ b/src/Data/DevHive.Data.Models/Rating.cs
@@ -1,6 +1,6 @@
using System;
using System.Collections.Generic;
-using DevHive.Data.Interfaces.Models;
+using DevHive.Data.Models.Interfaces;
namespace DevHive.Data.Models
{
@@ -11,7 +11,7 @@ namespace DevHive.Data.Models
public Guid PostId { get; set; }
public Post Post { get; set; }
-
+
public int Rate { get; set; }
}
}