Archived
Private
Public Access
1
0
This repository has been archived on 2026-02-04. You can view files and clone it. You cannot open issues or pull requests or push a commit.
Files
ProjectBackup/C#/DynamicParser/ExampleModel.cs
2023-07-31 21:20:56 +02:00

18 lines
518 B
C#

using System;
using System.Collections.Generic;
namespace DynamicParser {
public sealed class Person {
public string Name { get; set; }
public int Height { get; set; }
public DateTime Birth { get; set; }
public List<string> Friends { get; set; }
public Job Job { get; set; }
public Dictionary<int, Person> Dict { get; set; }
}
public sealed class Job {
public string Name { get; set; }
public List<Person> Employees { get; set; }
}
}