mirror of
https://github.com/samsonjs/samhuri.net.git
synced 2026-06-24 04:49:08 +00:00
14 lines
208 B
Swift
14 lines
208 B
Swift
//
|
|
// Project.swift
|
|
// SiteGenerator
|
|
//
|
|
// Created by Sami Samhuri on 2019-12-02.
|
|
//
|
|
|
|
import Foundation
|
|
|
|
struct Project: Codable {
|
|
let title: String
|
|
let description: String
|
|
var path: String!
|
|
}
|