mirror of
https://github.com/Stone-Red-Code/docs-desktop.git
synced 2026-09-04 09:06:04 +02:00
13 lines
196 B
C#
13 lines
196 B
C#
using System;
|
|
|
|
namespace ArticleExample
|
|
{
|
|
//<Person>
|
|
class Person
|
|
{
|
|
public string Name { get; set; }
|
|
public DateTime Birthdate { get; set; }
|
|
}
|
|
//</Person>
|
|
}
|