From 0b7ecd4039a8fffa8fd57750e88150bda20ffd62 Mon Sep 17 00:00:00 2001 From: Paul Schneider Date: Fri, 12 Aug 2016 19:27:37 +0200 Subject: [PATCH] =?UTF-8?q?impl=C3=A9menter=20l'interface=20ad=C3=A9quate?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- Yavsc/Model/Blog/Blog.cs | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/Yavsc/Model/Blog/Blog.cs b/Yavsc/Model/Blog/Blog.cs index b4209f98..4982819e 100644 --- a/Yavsc/Model/Blog/Blog.cs +++ b/Yavsc/Model/Blog/Blog.cs @@ -2,10 +2,11 @@ using System; using System.ComponentModel.DataAnnotations; using System.ComponentModel.DataAnnotations.Schema; using Newtonsoft.Json; +using Yavsc.Interfaces; namespace Yavsc.Models { - public partial class Blog + public partial class Blog : IBlog { [Key(), DatabaseGenerated(DatabaseGeneratedOption.Identity)] public long Id { get; set; }