Files
DaSaSo/DaSaSo.Domain/Model/PhotoDocumentation.cs
2022-03-30 14:19:03 +02:00

15 lines
313 B
C#

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