First commit
This commit is contained in:
14
DaSaSo.Domain/Model/Client.cs
Normal file
14
DaSaSo.Domain/Model/Client.cs
Normal file
@@ -0,0 +1,14 @@
|
||||
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; }
|
||||
}
|
||||
}
|
||||
13
DaSaSo.Domain/Model/DomainObject.cs
Normal file
13
DaSaSo.Domain/Model/DomainObject.cs
Normal file
@@ -0,0 +1,13 @@
|
||||
using System;
|
||||
using System.Collections.Generic;
|
||||
using System.Linq;
|
||||
using System.Text;
|
||||
using System.Threading.Tasks;
|
||||
|
||||
namespace DaSaSo.Domain.Model
|
||||
{
|
||||
public class DomainObject
|
||||
{
|
||||
public int Id { get; set; }
|
||||
}
|
||||
}
|
||||
14
DaSaSo.Domain/Model/Project.cs
Normal file
14
DaSaSo.Domain/Model/Project.cs
Normal file
@@ -0,0 +1,14 @@
|
||||
using System;
|
||||
using System.Collections.Generic;
|
||||
using System.Linq;
|
||||
using System.Text;
|
||||
using System.Threading.Tasks;
|
||||
|
||||
namespace DaSaSo.Domain.Model
|
||||
{
|
||||
public class Project : DomainObject
|
||||
{
|
||||
public string Name { get; set; }
|
||||
public Client Client { get; set; }
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user