forked from itsecd/cloud-development
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathSoftwareProject.cs
More file actions
57 lines (47 loc) · 1.52 KB
/
SoftwareProject.cs
File metadata and controls
57 lines (47 loc) · 1.52 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
namespace SoftwareProjects.Api.Entities;
/// <summary>
/// Программный проект с информацией о бюджете, сроках и прогрессе
/// </summary>
public class SoftwareProject
{
/// <summary>
/// Идентификатор в системе
/// </summary>
public int Id { get; set; }
/// <summary>
/// Название проекта
/// </summary>
public required string ProjectName { get; set; }
/// <summary>
/// Заказчик проекта
/// </summary>
public required string CustomerCompany { get; set; }
/// <summary>
/// Менеджер проекта (Фамилия Имя Отчество)
/// </summary>
public required string ProjectManager { get; set; }
/// <summary>
/// Дата начала
/// </summary>
public DateOnly StartDate { get; set; }
/// <summary>
/// Плановая дата завершения
/// </summary>
public DateOnly PlannedEndDate { get; set; }
/// <summary>
/// Фактическая дата завершения
/// </summary>
public DateOnly? ActualEndDate { get; set; }
/// <summary>
/// Бюджет
/// </summary>
public decimal Budget { get; set; }
/// <summary>
/// Фактические затраты
/// </summary>
public decimal ActualCosts { get; set; }
/// <summary>
/// Процент выполнения (0-100)
/// </summary>
public int CompletionPercentage { get; set; }
}