CHResume/ResumeBuilder/Data/Publication.swift

17 lines
193 B
Swift
Raw Normal View History

2023-08-18 22:47:24 +02:00
import Foundation
struct Publication: Identifiable {
let venue: String
let title: String
var id: String {
title + venue
}
}
2023-08-21 09:16:45 +02:00
extension Publication: Codable {
}