20 lines
511 B
C#
20 lines
511 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace DaSaSo.Domain.Model
|
|
{
|
|
public class Client : DomainObject
|
|
{
|
|
public string Firstname { get; set; }
|
|
public string LastName { get; set; }
|
|
public string Country { get; set; }
|
|
public string Street { get; set; }
|
|
public string Postcode { get; set; }
|
|
public ICollection<Project> Projects { get; set; } = new List<Project>();
|
|
|
|
}
|
|
}
|