Event

public struct Event : Codable, Equatable, CodableModel

Event

  • Event name, eg. Bitcoin Conference

    Declaration

    Swift

    public let name: String
  • Event start date

    Declaration

    Swift

    public let date: Date
  • Event end date

    Declaration

    Swift

    public let dateTo: Date?
  • Is it conference

    Declaration

    Swift

    public let isConference: Bool
  • Event link

    Declaration

    Swift

    public let link: URL
  • Proof image

    Declaration

    Swift

    public let proofImageLink: URL?