2023-03-12 12:32:26 +01:00
|
|
|
|
using System;
|
|
|
|
|
|
using System.Collections.Generic;
|
|
|
|
|
|
using System.Linq;
|
|
|
|
|
|
using System.Text;
|
|
|
|
|
|
using System.Threading.Tasks;
|
|
|
|
|
|
|
|
|
|
|
|
namespace TimetableDesigner.Core
|
|
|
|
|
|
{
|
2023-05-07 17:39:24 +02:00
|
|
|
|
public interface IUnit
|
2023-03-12 12:32:26 +01:00
|
|
|
|
{
|
2023-03-26 23:01:58 +02:00
|
|
|
|
#region PROPERTIES
|
|
|
|
|
|
|
|
|
|
|
|
string Name { get; }
|
|
|
|
|
|
|
|
|
|
|
|
#endregion
|
2023-03-12 12:32:26 +01:00
|
|
|
|
}
|
|
|
|
|
|
}
|