Created
February 19, 2018 10:07
-
-
Save vialyx/180074d7ad111f770b03344577130b4f to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
protocol NameType { | |
var fullName: String { get } | |
} | |
struct User: NameType { | |
var fullName: String | |
var note = "" | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment