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/Models/Project.cs
T
2019-11-09 12:36:38 +03:00

18 lines
439 B
C#

using System;
using System.Collections.Generic;
using System.Linq;
using System.Threading.Tasks;
namespace MyWebsite.Models
{
public class Project
{
public string Title { get; set; }
public string Description { get; set; }
public string ImageName { get; set; }
public string Link { get; set; }
public string LinkCaption { get; set; }
public string[] Badges { get; set; }
}
}