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

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