12 lines
200 B
C#
12 lines
200 B
C#
|
|
|||
|
|
|||
|
namespace EkzamenDataModels
|
|||
|
{
|
|||
|
public interface IGroupModel : IId
|
|||
|
{
|
|||
|
string Name { get; set; }
|
|||
|
string Direction { get; set; }
|
|||
|
DateTime Created { get; set; }
|
|||
|
}
|
|||
|
}
|