Skip to content

Instantly share code, notes, and snippets.

@qdequele
Created June 10, 2015 06:48
Show Gist options
  • Save qdequele/7b2bd6c27000d500f6f7 to your computer and use it in GitHub Desktop.
Save qdequele/7b2bd6c27000d500f6f7 to your computer and use it in GitHub Desktop.

Revisions

  1. Quentin deQuelen created this gist Jun 10, 2015.
    23 changes: 23 additions & 0 deletions Basic Object
    Original file line number Diff line number Diff line change
    @@ -0,0 +1,23 @@
    //
    // email.swift
    //
    // Created by Quentin De Quelen on 04/06/15.
    //

    class Email{
    var active : Bool
    var paused : Bool
    let label : String
    let email : String

    init(
    active : Bool,
    paused : Bool,
    label : String,
    email : String){
    self.active = active
    self.paused = paused
    self.label = label
    self.email = email
    }
    }