Files
TimetableDesigner/TimetableDesigner.Core/IUnit.cs

18 lines
273 B
C#
Raw Normal View History

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
{
#region PROPERTIES
string Name { get; }
#endregion
2023-03-12 12:32:26 +01:00
}
}