First commit

This commit is contained in:
HuskyTeufel
2021-09-12 12:50:50 +02:00
parent 418d2b5686
commit 28c290599b
11 changed files with 220 additions and 0 deletions

View 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; }
}
}