Skip to content

Instantly share code, notes, and snippets.

@hitendradeveloper
Created April 18, 2019 11:26
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save hitendradeveloper/dc7dc4c67e6a51f1d6987bf164829198 to your computer and use it in GitHub Desktop.
Save hitendradeveloper/dc7dc4c67e6a51f1d6987bf164829198 to your computer and use it in GitHub Desktop.
HSUndoRedoTutorial1 - Student.swift
//
// Student.swift
// HSUndoRedoTutorial1
//
// Created by Hitendra on 18/04/19.
// Copyright © 2019 Hitendra iDev. All rights reserved.
//
import Foundation
struct Student {
var name: String
var studyInClass: String
static let allStudents : [Student] = [
Student(name: "Hitendra Solanki", studyInClass: "9th standard"),
Student(name: "Yajaira Coplan", studyInClass: "7th standard"),
Student(name: "Loyd Stage", studyInClass: "8th standard"),
Student(name: "Jan Hester", studyInClass: "1st standard"),
Student(name: "Vennie Loranger", studyInClass: "9th standard"),
Student(name: "Brady Sartor", studyInClass: "7th standard"),
Student(name: "Jasmin Mcgillis", studyInClass: "8th standard"),
Student(name: "Octavia Martens", studyInClass: "1st standard"),
Student(name: "Latosha Bingaman", studyInClass: "9th standard"),
Student(name: "Scarlet Noto", studyInClass: "7th standard"),
]
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment