Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 
avatar of DvirB

DvirB

DvirB has asked 0 questions and find answers to 1 problems.

Stats

13
EtPoint
2
Vote count
0
questions
1
answers

About

public class Person
{
 public string Name { get; set; }
 public DateTime BirthDate { get; set; }
 public bool IsBatman { get; set; } = true;
}