aboutsummaryrefslogtreecommitdiff
path: root/src/DevHive.Data/Models/Technology.cs
blob: a462d20e5507b21dc01ced6130340572a32994b4 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
using System;

namespace DevHive.Data.Models
{
	public class Technology : IModel
	{
		public Guid Id { get; set; }
		public string Name { get; set; }
	}
}