-
Notifications
You must be signed in to change notification settings - Fork 52
Expand file tree
/
Copy pathProgramProjectModel.cs
More file actions
48 lines (47 loc) · 1.42 KB
/
ProgramProjectModel.cs
File metadata and controls
48 lines (47 loc) · 1.42 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
namespace ProgramProject.GenerationService.Models;
/// <summary>
/// Модель программного проекта
/// </summary>
public class ProgramProjectModel
{
/// <summary>
/// Идетификатор в системе
/// </summary>
public int Id { get; set; }
/// <summary>
/// Название проекта
/// </summary>
public string Name { get; set; } = string.Empty;
/// <summary>
/// Заказчик проекта
/// </summary>
public string Customer { get; set; } = string.Empty;
/// <summary>
/// Мененджер проекта
/// </summary>
public string Manager { get; set; } = string.Empty;
/// <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 ActualCost { get; set; }
/// <summary>
/// Процент выполнения
/// </summary>
public int CompletionPercentage { get; set; }
}