CHResume/ResumeBuilder/Data/Publication.swift

13 lines
152 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
}
}