aboutsummaryrefslogtreecommitdiff
blob: 9423bc12cccf70dfff21e6f723597c4d1a8ae11a (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
using System;
using System.Collections.Generic;
using System.Linq;
using System.Web;

namespace HousingWebApi
{
    public class ResidentList
    {
        public int ResidentNr { get; set; }
        public int ApartmentNr { get; set; }
        public string FirstName { get; set; }
        public string LastName { get; set; }
        public DateTime? BirthDate { get; set; }
        public int? Phone { get; set; }
        public string Email { get; set; }
        public string Picture { get; set; }

    }
}