1
0
This repository has been archived on 2026-04-22. You can view files and clone it. You cannot open issues or pull requests or push a commit.
Files
my-old-website/MyWebsite.old/Models/Link.cs
T
Michael Gordeev 53e95afa2d Refactoring 1
2019-12-09 21:14:09 +03:00

17 lines
384 B
C#

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; }
public bool CanContactMe { get; set; }
}
}