Skip to content

Instantly share code, notes, and snippets.

@hilapon
Last active August 29, 2015 14:13
Show Gist options
  • Save hilapon/9e5283d0bb05ed2fe361 to your computer and use it in GitHub Desktop.
Save hilapon/9e5283d0bb05ed2fe361 to your computer and use it in GitHub Desktop.
単純なパーソンクラス、VB版
Option Explicit On
Option Strict On
Namespace Models
Public Class Person
Public Property Id() As Int32
Public Property Name() As String
Public Property Age() As Int32
End Class
End Namespace
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment