AyCode.Core/AyCode.Interfaces/Groups/IGroupBase.cs

15 lines
302 B
C#

using AyCode.Interfaces.Entities;
using AyCode.Interfaces.TimeStampInfo;
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace AyCode.Interfaces.Groups
{
public interface IGroupBase : IEntity, ITimeStampInfo
{
}
}