1
0

Added file with links

This commit is contained in:
Michael Gordeev
2019-10-17 17:03:23 +03:00
parent 860cee4f87
commit bd376feb9a
3 changed files with 74 additions and 1 deletions
@@ -1,6 +1,8 @@
using System.Diagnostics;
using System.Collections.Generic;
using System.Diagnostics;
using Microsoft.AspNetCore.Mvc;
using MyWebsite.Models;
using Newtonsoft.Json;
namespace MyWebsite.Controllers
{
+15
View File
@@ -0,0 +1,15 @@
using System;
using System.Collections.Generic;
using System.Linq;
using System.Threading.Tasks;
namespace MyWebsite.Models
{
public class Link
{
public string Title { get; set; }
public string Socicon { get; set; }
public string Username { get; set; }
public string Url { get; set; }
}
}
+56
View File
@@ -0,0 +1,56 @@
{
"email": {
"Title": "Email",
"Socicon": "outlook",
"Username": "michael.xfox@outlook.com",
"Url": "mailto:michael.xfox@outlook.com"
},
"linkedin": {
"Title": "LinkedIn",
"Socicon": "linkedin",
"Username": "@xfox",
"Url": "//linkedin.com/in/xfox"
},
"vk": {
"Title": "Vkontakte",
"Socicon": "linkedin",
"Username": "@xfox",
"Url": "//linkedin.com/in/xfox"
},
"telegram": {
"Title": "Telegram",
"Socicon": "linkedin",
"Username": "@xfox",
"Url": "//linkedin.com/in/xfox"
},
"skype": {
"Title": "Skype",
"Socicon": "linkedin",
"Username": "@xfox",
"Url": "//linkedin.com/in/xfox"
},
"twitter": {
"Title": "Twitter",
"Socicon": "linkedin",
"Username": "@xfox",
"Url": "//linkedin.com/in/xfox"
},
"twitch": {
"Title": "Twitch",
"Socicon": "linkedin",
"Username": "@xfox",
"Url": "//linkedin.com/in/xfox"
},
"youtube": {
"Title": "YouTube",
"Socicon": "linkedin",
"Username": "@xfox",
"Url": "//linkedin.com/in/xfox"
},
"github": {
"Title": "GitHub",
"Socicon": "linkedin",
"Username": "@xfox",
"Url": "//linkedin.com/in/xfox"
}
}