Fotodokumentation domain hinzugefügt zur EF

This commit is contained in:
HuskyTeufel
2022-03-30 14:19:03 +02:00
parent f59fc036d1
commit f34f4517ca
11 changed files with 562 additions and 2 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 PhotoDocumentation : DomainObject
{
public string PicturePath { get; set; }
public string Description { get; set; }
}
}