Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 
avatar of DvirB

DvirB

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

Stats

28
EtPoint
5
Vote count
0
questions
2
answers

About

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