aboutsummaryrefslogtreecommitdiff
path: root/src/DevHive.Data/Models/Technology.cs
blob: 9096cbe11ab2c68749bae1074b5e49036f7dcb79 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
using System;
using System.Collections.Generic;
using DevHive.Data.Interfaces.Models;

namespace DevHive.Data.Models
{
	public class Technology : ITechnology
	{
		public Guid Id { get; set; }
		public string Name { get; set; }
		public List<User> Users { get; set; }
	}
}