15 lines
313 B
C#
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; }
|
|
}
|
|
}
|