# 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
17 lines
363 B
C#
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();
|
|
}
|
|
}
|
|
} |