system-praktyk-api/src/InternshipSystem.Core/Entity/Report.cs

12 lines
271 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; }
}
}