mirror of
https://github.com/samsonjs/samhuri.net.git
synced 2026-04-01 10:05:55 +00:00
18 lines
280 B
Swift
18 lines
280 B
Swift
//
|
|
// Project.swift
|
|
// SiteGenerator
|
|
//
|
|
// Created by Sami Samhuri on 2019-12-01.
|
|
//
|
|
|
|
import Foundation
|
|
|
|
struct Project: Page {
|
|
// Page properties
|
|
let title: String
|
|
let template: String?
|
|
let styles: [String]
|
|
let scripts: [String]
|
|
|
|
// Other properties
|
|
}
|