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