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