Загрузка данных


package com.monika.orangesky

object DataSource {
    val users = mutableListOf(
        UserProfile(
            id = "1",
            name = "Mark Zuckerberg",
            house = "Kirkland House",
            status = "Making the site.",
            email = "mark@fas.harvard.edu",
            info = "Founder and developer. Likings: programming, minimal design."
        ),
        UserProfile(
            id = "2",
            name = "Eduardo Saverin",
            house = "Kirkland House",
            status = "Business stuff.",
            email = "eduardo@fas.harvard.edu",
            info = "CFO of the network."
        ),
        UserProfile(
            id = "3",
            name = "Dustin Moskovitz",
            house = "Kirkland House",
            status = "Coding and scaling.",
            email = "dustin@fas.harvard.edu",
            info = " Programmer."
        ),
        UserProfile(
            id = "4",
            name = "Oliver",
            house = "Harvard Yard",
            status = "Writing Android code.",
            email = "oliver@fas.harvard.edu",
            info = "Guest user exploring the network."
        )
    )

    val wallPosts = mutableListOf(
        WallPost("1", "Mark Zuckerberg", "Welcome to The Facebook. Keep it clean.", "Feb 4, 2004"),
        WallPost("2", "Eduardo Saverin", "Site is up and running smoothly.", "Feb 5, 2004")
    )
}