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

namespace DevHive.Data.Interfaces.Models
{
	public interface IModel
	{
		Guid Id { get; set; }
	}
}