26 lines
620 B
C#
26 lines
620 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.ComponentModel;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
using TaskTrackerDataModels.Models;
|
|
|
|
namespace TaskTrackerContracts.ViewModels
|
|
{
|
|
public class OrganizationViewModel : IOrganizationModel
|
|
{
|
|
public int Id { get; set; }
|
|
|
|
[DisplayName("Название организации")]
|
|
|
|
public string OrganizationName { get; set; } = string.Empty;
|
|
|
|
public Dictionary<int, (IProjectModel, int)> OrganizationProjects
|
|
{
|
|
get;
|
|
set;
|
|
} = new();
|
|
}
|
|
}
|