system-praktyk-api/src/InternshipSystem.Core/Entity/Report.cs
mborzyszkowski 35bc61676f sync master
# Conflicts:
#	src/InternshipSystem.Api/Controllers/EditionController.cs
#	src/InternshipSystem.Core/Entity/Edition.cs
#	src/InternshipSystem.Core/Entity/Internship/InternshipRegistration.cs
#	src/InternshipSystem.Core/Entity/Report.cs
2020-08-31 17:22:02 +02:00

17 lines
363 B
C#

using System;
namespace InternshipSystem.Core
{
public class Report
{
public long Id { get; set; }
public DocumentState State { get; set; }
public RangeOfActivity Range { get; set; }
public Uri SiteAddress { get; set; }
public static Report Create()
{
return new Report();
}
}
}