From 3bb8820ae7d143cb248117defc4f495ee52496c6 Mon Sep 17 00:00:00 2001 From: cldupland Date: Fri, 13 Dec 2019 16:26:14 +0100 Subject: [PATCH] Add FractionCardVM --- TheGameExtreme/viewmodel/FractionCardVM.cs | 12 ++++++++++++ 1 file changed, 12 insertions(+) create mode 100644 TheGameExtreme/viewmodel/FractionCardVM.cs diff --git a/TheGameExtreme/viewmodel/FractionCardVM.cs b/TheGameExtreme/viewmodel/FractionCardVM.cs new file mode 100644 index 0000000..4f21f16 --- /dev/null +++ b/TheGameExtreme/viewmodel/FractionCardVM.cs @@ -0,0 +1,12 @@ +using System; +using TheGameExtreme.model.card; + +namespace TheGameExtreme.viewmodel +{ + public class FractionCardVM : CardVM + { + public FractionCardVM(Card view) : base(view) + { + } + } +}